ffmpeg-next 8.1.0

Safe FFmpeg wrapper (FFmpeg 4 compatible fork of the ffmpeg crate)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use ffi::*;

pub fn init() {
    unsafe {
        avformat_network_init();
    }
}

pub fn deinit() {
    unsafe {
        avformat_network_deinit();
    }
}