Skip to content
Snippets Groups Projects
Unverified Commit dbe84010 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

reduce playout latency

parent 1df6e907
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#!/bin/sh
port=$1
......@@ -10,5 +9,11 @@ export SDL_AUDIODRIVER="alsa"
export AUDIODEV="hdmi:CARD=PCH,DEV=0"
ffplay \
-v verbose \
-analyzeduration 1000 \
-i tcp://localhost:${port}
-fflags nobuffer \
-flags low_delay \
-probesize 32 \
-analyzeduration 50 \
-framedrop \
-f matroska \
-i tcp://localhost:${port} \
-vf "setpts=0"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment