diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-08 22:20:34 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-08 22:20:34 +0100 |
commit | 4f9ff288cfd66dc33cf66ae9085075f7a242685b (patch) | |
tree | d4186f970cb14766285b0ab5cb9123f784f21e04 /evc/scripts/stream-nodebug | |
parent | 1b3835a38ed38d377ce337836a4b32ee89ca0289 (diff) | |
download | video-codec-experiments-4f9ff288cfd66dc33cf66ae9085075f7a242685b.tar video-codec-experiments-4f9ff288cfd66dc33cf66ae9085075f7a242685b.tar.bz2 video-codec-experiments-4f9ff288cfd66dc33cf66ae9085075f7a242685b.tar.zst |
small oopsie
Diffstat (limited to 'evc/scripts/stream-nodebug')
-rwxr-xr-x | evc/scripts/stream-nodebug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evc/scripts/stream-nodebug b/evc/scripts/stream-nodebug index 8193654..7211b05 100755 --- a/evc/scripts/stream-nodebug +++ b/evc/scripts/stream-nodebug @@ -2,6 +2,6 @@ set w $argv[1] set h $argv[2] ffmpeg -hide_banner -i $argv[3] -vf scale={$w}x{$h},fps=30,format=rgb24 -f rawvideo pipe:1 | - cargo run --release --bin encode -- -W {$w} -H {$h} | + cargo run --release --bin encode -- -W {$w} -H {$h} $argv[4..] | cargo run --release --bin decode -- | ffplay -hide_banner -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo pipe:0 |