#image #ffmpeg #frame #decode #iterator #grabber

ffmpeg-frame-grabber

Provides a frame iterator for videos by using ffmpeg. Decodes images using the image crate.

1 unstable release

0.1.0 Mar 31, 2021

#371 in Video

Download history 13/week @ 2024-02-29 33/week @ 2024-03-07 127/week @ 2024-03-14 156/week @ 2024-03-21 119/week @ 2024-03-28 112/week @ 2024-04-04 149/week @ 2024-04-11 39/week @ 2024-04-18 14/week @ 2024-04-25 58/week @ 2024-05-02 24/week @ 2024-05-09 2/week @ 2024-05-16 1/week @ 2024-05-23 9/week @ 2024-05-30 11/week @ 2024-06-06 32/week @ 2024-06-13

55 downloads per month

MIT license

17KB
439 lines

FFmpeg Rust Adapter

Installation

cargo add ffmpeg_frame_grabber

Requirements

This library requires the ffmpeg and ffprobe commands to be installed and in path!

Usage

use ffmpeg_frame_grabber::{FFMpegVideo, FFMpegVideoOptions};
use image_visualizer::{visualizer::view, VisualizableImage};
use std::{path::Path, time::Duration};

fn main()s {
    let video = FFMpegVideo::open(
        Path::new(&"./data/video.mp4"),
        FFMpegVideoOptions::default().with_sampling_interval(Duration::from_secs(120)),
    )
    .unwrap();

    for frame in video {
        let f = frame.unwrap();
        println!("offset: {:?}", f.time_offset);
        view!(&f.image.visualize());
    }
}

Dependencies

~18MB
~162K SLoC