blob: 2072e21a6035d7a36c37bf75d1f1c1f43c7d38d9 (
plain)
1
2
3
4
5
|
#!/bin/fish
ffmpeg -i $argv[1] -vf scale=1920x1080,fps=30,format=rgb24 -f rawvideo pipe:1 2>/dev/null |
cargo run --release --bin encode -- -W 1920 -H 1080 |
cargo run --release --bin decode -- --debug |
ffplay -framerate 30 -video_size 1920x1080 -pixel_format rgb24 -f rawvideo pipe:0 2>/dev/null
|