sxmo_camera.sh: Set cache-secs and demuxer-readahead-secs to 0 to prevent lag

Stops camera stream in mpv from falling behind
This commit is contained in:
Miles Alan 2020-08-30 14:31:06 -05:00
parent fbb431bf7a
commit 561122b07c

View file

@ -41,6 +41,7 @@ startmpv() {
# in mpv; but this is simpler and more reliable for now.
ffmpeg -re -fflags nobuffer -f v4l2 -video_size $RES -i /dev/video1 -f rawvideo - |
mpv \
--cache-secs=0 --demuxer-readahead-secs=0 \
--demuxer-rawvideo-w=$WIDTH --demuxer-rawvideo-h=$HEIGHT \
--untimed --vo=xv --cache-pause=no --no-demuxer-thread \
--profile=low-latency --demuxer=rawvideo -vf transpose=$TRANSPOSE \