Skip to main content

get_ffmpeg_log_level

Function get_ffmpeg_log_level 

Source
pub fn get_ffmpeg_log_level() -> Option<FfmpegLogLevel>
Expand description

Get the current FFmpeg internal log verbosity level.

Returns None if the current level does not map to a known variant (should not happen in practice).

ยงExample

use unbundle::FfmpegLogLevel;

let level = unbundle::get_ffmpeg_log_level();
println!("Current FFmpeg log level: {:?}", level);