diff options
author | metamuffin <metamuffin@disroot.org> | 2023-11-15 20:03:59 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-11-15 20:03:59 +0100 |
commit | 9e1a836f663c03e462fbf1bcff444a20aaf56eaf (patch) | |
tree | 90b3fa998cdda4c7d2c22a58b42cdb5a4369f547 /test | |
parent | 0196cc1a12cf787a4c5bfc3645b0364eb5daf93a (diff) | |
download | video-codec-experiments-9e1a836f663c03e462fbf1bcff444a20aaf56eaf.tar video-codec-experiments-9e1a836f663c03e462fbf1bcff444a20aaf56eaf.tar.bz2 video-codec-experiments-9e1a836f663c03e462fbf1bcff444a20aaf56eaf.tar.zst |
a
Diffstat (limited to 'test')
-rwxr-xr-x | test | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -0,0 +1,4 @@ +#!/bin/fish +ffmpeg -loglevel quiet -i $argv[2] -vf 'scale=1920x1080,format=rgb24' -f rawvideo pipe:1 \ + | V_WIDTH=1920 V_HEIGHT=1080 V_DEBUG=0 V_MODE=encode cargo run --release --bin $argv[1] \ + | ffplay -loglevel quiet -video_size 1920x1080 -pixel_format rgb24 -f rawvideo pipe:0 |