diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-06 22:16:50 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-06 22:16:50 +0100 |
commit | a713143ef9c1187c37004043b1d3322d773f9ea0 (patch) | |
tree | b5d390a77fa6428d0648d9446a75978f85fdbb5f /evc/scripts/gen | |
parent | 39cb075c7f58e78899be43ca9ad4d65837f53a26 (diff) | |
download | video-codec-experiments-a713143ef9c1187c37004043b1d3322d773f9ea0.tar video-codec-experiments-a713143ef9c1187c37004043b1d3322d773f9ea0.tar.bz2 video-codec-experiments-a713143ef9c1187c37004043b1d3322d773f9ea0.tar.zst |
webm + variable amount of threads
Diffstat (limited to 'evc/scripts/gen')
-rwxr-xr-x | evc/scripts/gen | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/evc/scripts/gen b/evc/scripts/gen index 1cf4493..620c69f 100755 --- a/evc/scripts/gen +++ b/evc/scripts/gen @@ -5,6 +5,6 @@ set t $argv[3] ffmpeg -hide_banner -i $argv[4] -to {$t} -vf scale={$w}x{$h},fps=30,format=rgb24 -f rawvideo pipe:1 | LOG=info cargo run --release --bin encode -- -W {$w} -H {$h} > samples/encoded LOG=info cargo run --release --bin decode -- < samples/encoded | - ffmpeg -hide_banner -y -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded.mp4 + ffmpeg -hide_banner -y -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded.webm LOG=info cargo run --release --bin decode -- --debug < samples/encoded | - ffmpeg -hide_banner -y -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded-debug.mp4 + ffmpeg -hide_banner -y -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded-debug.webm |