diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-07 22:31:20 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-07 22:31:20 +0100 |
commit | e4704f1ba3ff7d9c75714d432768ce12f630e745 (patch) | |
tree | 5736f8880c7105aeb458f808022bc8138dd84987 /evc/scripts/stream | |
parent | 2ac18802b58d671c10538e78d50a620baad9a188 (diff) | |
download | video-codec-experiments-e4704f1ba3ff7d9c75714d432768ce12f630e745.tar video-codec-experiments-e4704f1ba3ff7d9c75714d432768ce12f630e745.tar.bz2 video-codec-experiments-e4704f1ba3ff7d9c75714d432768ce12f630e745.tar.zst |
small cleanup
Diffstat (limited to 'evc/scripts/stream')
-rwxr-xr-x | evc/scripts/stream | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evc/scripts/stream b/evc/scripts/stream index 10098b6..cd7e159 100755 --- a/evc/scripts/stream +++ b/evc/scripts/stream @@ -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 -- --debug | ffplay -hide_banner -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo pipe:0 |