piksel_video_frame 0.2.1
piksel_video_frame: ^0.2.1 copied to clipboard
Video thumbnail (frame extraction) plugin for piksel — load a frame from a video URL/file as an image.
piksel_video_frame #
Video frame extraction for piksel: load a still frame from a video URL or file through the same widget + cache pipeline.
Piksel.configure(Piksel(
components: const ComponentRegistry(fetchers: [VideoFrameFetcher()]),
));
PikselImage(ImageRequest(
source: VideoFrameSource('https://example.com/clip.mp4',
timeMs: 2000),
));
This package demonstrates the Fetcher extension seam: VideoFrameSource is
a custom ImageSource the core knows nothing about.
