summaryrefslogtreecommitdiffstats
path: root/src/bin/tsv_video_buffer.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/bin/tsv_video_buffer.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/tsv_video_buffer.rs b/src/bin/tsv_video_buffer.rs
index 3a244a8..1152193 100644
--- a/src/bin/tsv_video_buffer.rs
+++ b/src/bin/tsv_video_buffer.rs
@@ -50,6 +50,7 @@ fn main() {
}
let mut info = ffmpeg::probe_video(ff_args, max_frames);
+ log::info!("probe results: {:?}", info);
let num_frames = match (info.num_frames, max_frames) {
(Some(a), Some(b)) => u32::min(a, b),
(Some(a), None) => a,