diff options
Diffstat (limited to 'bv1/tools')
-rwxr-xr-x | bv1/tools/decode-display | 2 | ||||
-rwxr-xr-x | bv1/tools/decode-display-debug | 2 | ||||
-rwxr-xr-x | bv1/tools/decode-save | 2 | ||||
-rwxr-xr-x | bv1/tools/decode-save-debug | 2 | ||||
-rwxr-xr-x | bv1/tools/encode | 2 |
5 files changed, 0 insertions, 10 deletions
diff --git a/bv1/tools/decode-display b/bv1/tools/decode-display deleted file mode 100755 index d7b8feb..0000000 --- a/bv1/tools/decode-display +++ /dev/null @@ -1,2 +0,0 @@ -#!/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 diff --git a/bv1/tools/decode-display-debug b/bv1/tools/decode-display-debug deleted file mode 100755 index 97a2b90..0000000 --- a/bv1/tools/decode-display-debug +++ /dev/null @@ -1,2 +0,0 @@ -#!/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 diff --git a/bv1/tools/decode-save b/bv1/tools/decode-save deleted file mode 100755 index 1f19994..0000000 --- a/bv1/tools/decode-save +++ /dev/null @@ -1,2 +0,0 @@ -#!/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 diff --git a/bv1/tools/decode-save-debug b/bv1/tools/decode-save-debug deleted file mode 100755 index 16de45a..0000000 --- a/bv1/tools/decode-save-debug +++ /dev/null @@ -1,2 +0,0 @@ -#!/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 diff --git a/bv1/tools/encode b/bv1/tools/encode deleted file mode 100755 index abab962..0000000 --- a/bv1/tools/encode +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/fish -ffmpeg -loglevel quiet -i $argv[1] -vf scale=1920x1080,format=rgb24 -f rawvideo pipe:1 | cargo run --release -- -W 1920 -H 1080 encode $argv[2..] |