diff options
| author | s-ol <s+removethis@s-ol.nu> | 2026-05-22 13:11:04 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2026-05-22 13:40:26 +0000 |
| commit | 0f55c2011032a6ada8a66d2743efc88e229ff5a6 (patch) | |
| tree | 45be24a59cd798ca57d3c9f23a02720f1ad75030 /src/bin/tsv_video_buffer.rs | |
| parent | fix SRGB fail (diff) | |
| download | wgsl-view-main.tar.gz wgsl-view-main.zip | |
Diffstat (limited to '')
| -rw-r--r-- | src/bin/tsv_video_buffer.rs | 1 |
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, |
