diff options
author | metamuffin <metamuffin@disroot.org> | 2023-03-09 18:16:05 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-03-09 18:16:05 +0100 |
commit | ac27a58c87bea9480f6603a731448f69c9c3b0fb (patch) | |
tree | b437fb947a5d650c88d8db743c521e832f79611f /lvc/tools | |
parent | 4fbf4bb4310da4bede43c9428809ac9a8804982a (diff) | |
download | video-codec-experiments-ac27a58c87bea9480f6603a731448f69c9c3b0fb.tar video-codec-experiments-ac27a58c87bea9480f6603a731448f69c9c3b0fb.tar.bz2 video-codec-experiments-ac27a58c87bea9480f6603a731448f69c9c3b0fb.tar.zst |
rearrange files
Diffstat (limited to 'lvc/tools')
-rwxr-xr-x | lvc/tools/d-disp | 2 | ||||
-rwxr-xr-x | lvc/tools/d-dispd | 2 | ||||
-rwxr-xr-x | lvc/tools/d-save | 2 | ||||
-rwxr-xr-x | lvc/tools/d-saved | 2 | ||||
-rwxr-xr-x | lvc/tools/e | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lvc/tools/d-disp b/lvc/tools/d-disp index f62d229..d7b8feb 100755 --- a/lvc/tools/d-disp +++ b/lvc/tools/d-disp @@ -1,2 +1,2 @@ #!/bin/fish -cargo run --release -- -w 1920 -h 1080 decode | ffplay -loglevel quiet -video_size 1920x1080 -pixel_format rgb24 -f rawvideo pipe:0
\ No newline at end of file +cargo run --release -- -W 1920 -H 1080 decode | ffplay -loglevel quiet -video_size 1920x1080 -pixel_format rgb24 -f rawvideo pipe:0
\ No newline at end of file diff --git a/lvc/tools/d-dispd b/lvc/tools/d-dispd index dac3faf..97a2b90 100755 --- a/lvc/tools/d-dispd +++ b/lvc/tools/d-dispd @@ -1,2 +1,2 @@ #!/bin/fish -cargo run --release -- -w 1920 -h 1080 decode --debug | ffplay -loglevel quiet -video_size 1920x1080 -pixel_format rgb24 -f rawvideo pipe:0
\ No newline at end of file +cargo run --release -- -W 1920 -H 1080 decode --debug | ffplay -loglevel quiet -video_size 1920x1080 -pixel_format rgb24 -f rawvideo pipe:0
\ No newline at end of file diff --git a/lvc/tools/d-save b/lvc/tools/d-save index 270578a..1f19994 100755 --- a/lvc/tools/d-save +++ b/lvc/tools/d-save @@ -1,2 +1,2 @@ #!/bin/fish -cargo run --release -- -w 1920 -h 1080 decode | ffmpeg -pixel_format rgb24 -video_size 1920x1080 -framerate 30 -f rawvideo -i pipe:0 -i $argv[1] -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 -framerate 30 -f rawvideo -i pipe:0 -i $argv[1] -map '0:v' -map '1:a' -c:v libsvtav1 -y data/output.webm diff --git a/lvc/tools/d-saved b/lvc/tools/d-saved index 833ae5d..16de45a 100755 --- a/lvc/tools/d-saved +++ b/lvc/tools/d-saved @@ -1,2 +1,2 @@ #!/bin/fish -cargo run --release -- -w 1920 -h 1080 decode --debug | ffmpeg -pixel_format rgb24 -video_size 1920x1080 -framerate 30 -f rawvideo -i pipe:0 -i $argv[1] -map '0:v' -map '1:a' -c:v libsvtav1 -y data/output-debug.webm +cargo run --release -- -W 1920 -H 1080 decode --debug | ffmpeg -pixel_format rgb24 -video_size 1920x1080 -framerate 30 -f rawvideo -i pipe:0 -i $argv[1] -map '0:v' -map '1:a' -c:v libsvtav1 -y data/output-debug.webm diff --git a/lvc/tools/e b/lvc/tools/e index 89d822a..a85a767 100755 --- a/lvc/tools/e +++ b/lvc/tools/e @@ -1,2 +1,2 @@ #!/bin/fish -ffmpeg -loglevel quiet -i $argv[1] -vf format=rgb24 -f rawvideo pipe:1 | cargo run --release -- -w 1920 -h 1080 encode $argv[2..] +ffmpeg -loglevel quiet -i $argv[1] -vf format=rgb24 -f rawvideo pipe:1 | cargo run --release -- -W 1920 -H 1080 encode $argv[2..] |