diff options
author | metamuffin <metamuffin@disroot.org> | 2023-03-07 22:30:23 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-03-07 22:30:23 +0100 |
commit | b9b629a8ed9c393b1b475f67f427d26e649a6794 (patch) | |
tree | 682cf6187fc3cbf6ff64243836c8240dbde27be5 /lvc/tools/d-save | |
parent | 755325d6c8faa897ee686452831cb544d6c72d75 (diff) | |
download | video-codec-experiments-b9b629a8ed9c393b1b475f67f427d26e649a6794.tar video-codec-experiments-b9b629a8ed9c393b1b475f67f427d26e649a6794.tar.bz2 video-codec-experiments-b9b629a8ed9c393b1b475f67f427d26e649a6794.tar.zst |
a
Diffstat (limited to 'lvc/tools/d-save')
-rwxr-xr-x | lvc/tools/d-save | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lvc/tools/d-save b/lvc/tools/d-save index 72e89c2..b79d8de 100755 --- a/lvc/tools/d-save +++ b/lvc/tools/d-save @@ -1,2 +1,2 @@ #!/bin/fish -ffmpeg -pixel_format rgb24 -video_size 1920x1080 -f rawvideo -i pipe:0 -i data/input.webm -map '0:v' -map '1:a' -c:v libsvtav1 -y data/output.webm +cargo run --release -- -w 1920 -h 1080 decode | ffmpeg -pixel_format rgb24 -video_size 1920x1080 -f rawvideo -i pipe:0 -i $argv[1] -map '0:v' -map '1:a' -c:v libsvtav1 -y data/output.webm |