blob: 73dca01f038e4d5bea078fe22afffeaf3a5ff0b6 (
plain)
1
2
3
4
5
6
|
#!/bin/fish
ffmpeg -i ~/videos/eddie-woo.mp4 -to 10 -vf scale=1920x1080,fps=30,format=rgb24 -f rawvideo pipe:1 |
cargo run --release --bin encode -- -W 1920 -H 1080 |
cargo run --release --bin decode |
ffplay -framerate 30 -video_size 1920x1080 -pixel_format rgb24 -f rawvideo
|