#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

#376 in Video

Download history 77/week @ 2024-03-10 153/week @ 2024-03-17 100/week @ 2024-03-24 166/week @ 2024-03-31 91/week @ 2024-04-07 115/week @ 2024-04-14 32/week @ 2024-04-21 16/week @ 2024-04-28 73/week @ 2024-05-05 2/week @ 2024-05-12 3/week @ 2024-05-19 20/week @ 2024-06-02 89/week @ 2024-06-16 38/week @ 2024-06-23

147 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