ffmpeg_sidecar::ffprobe

Function ffprobe_version

Source
pub fn ffprobe_version() -> Result<String>
Expand description

Alias for ffprobe -version, parsing the version number and returning it.

Examples found in repository?
examples/ffprobe.rs (line 10)
2
3
4
5
6
7
8
9
10
11
12
fn main() {
  use ffmpeg_sidecar::{download::auto_download, ffprobe::ffprobe_version};

  // Download ffprobe from a configured source.
  // Note that not all distributions include ffprobe in their bundle.
  auto_download().unwrap();

  // Try running the executable and printing the version number.
  let version = ffprobe_version().unwrap();
  println!("ffprobe version: {}", version);
}