diff options
Diffstat (limited to 'evc/scripts/bench_out')
-rwxr-xr-x | evc/scripts/bench_out | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/evc/scripts/bench_out b/evc/scripts/bench_out deleted file mode 100755 index d55cf08..0000000 --- a/evc/scripts/bench_out +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/fish -set w $argv[1] -set h $argv[2] - -# for mode in trivial simple-exhaustive simple-fast advanced advanced-partial -for mode in trivial simple-fast advanced - cargo run --release --bin reschmux-decode -- --debug < samples/encoded-$mode | - ffmpeg -y -hide_banner -framerate 25 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded-$mode-debug.mp4 - cargo run --release --bin reschmux-decode -- < samples/encoded-$mode | - ffmpeg -y -hide_banner -framerate 25 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded-$mode.mp4 -end |