diff options
Diffstat (limited to 'evc/scripts/stream')
-rwxr-xr-x | evc/scripts/stream | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/evc/scripts/stream b/evc/scripts/stream deleted file mode 100755 index 7e9400d..0000000 --- a/evc/scripts/stream +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/fish -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 reschmux-encode -- -W {$w} -H {$h} $argv[4..] | - cargo run --release --bin reschmux-decode -- --debug | - ffplay -hide_banner -framerate 30 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo pipe:0 |