We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1585cd commit 4869ba2Copy full SHA for 4869ba2
src/lib/converter.rs
@@ -162,7 +162,7 @@ impl<'a> Converter<'a> {
162
fn run_file_probe(&self, video_file: &str) -> Result<String, DownloadError> {
163
let mut command = self.create_ffmpeg_base("ffprobe");
164
command.args(&["-select_streams","0"]);
165
- command.args(&["-show_entries","stream=duration,r_frame_rate"]);
+ command.args(&["-show_entries","format=duration:stream=r_frame_rate"]);
166
command.args(&["-of","default=noprint_wrappers=1"]);
167
command.arg(video_file);
168
0 commit comments