aboutsummaryrefslogtreecommitdiff
path: root/evc/scripts/stream-lq
blob: 300800a075fd0e5bcd33881f5f6ee753a56a353b (plain)
1
2
3
4
5
#!/bin/fish
ffmpeg -i $argv[1] -vf scale=920x550,fps=30,format=rgb24 -f rawvideo pipe:1 2>/dev/null |
    LOG=info cargo run --release --bin encode -- -W 920 -H 550 |
    LOG=info cargo run --release --bin decode -- --debug |
    ffplay -framerate 30 -video_size 920x550 -pixel_format rgb24 -f rawvideo pipe:0 2>/dev/null