summaryrefslogtreecommitdiff
path: root/bin/decode+edit+encode+stream
diff options
context:
space:
mode:
Diffstat (limited to 'bin/decode+edit+encode+stream')
-rwxr-xr-xbin/decode+edit+encode+stream5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/decode+edit+encode+stream b/bin/decode+edit+encode+stream
index 157ad23..fc2364a 100755
--- a/bin/decode+edit+encode+stream
+++ b/bin/decode+edit+encode+stream
@@ -21,7 +21,7 @@ VBITRATE=256000
# based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
# + scale+watermark trick based on http://stackoverflow.com/a/10937357
-# + Drop frames, aggressively treat as static, and use fastest cpu
+# + Add 1s latency (deadline)
# + Use same RTP payload types as GStreamer
ffmpeg -threads auto -re \
-i "$INPUT" \
@@ -34,10 +34,9 @@ ffmpeg -threads auto -re \
-f rtp -payload_type 111 "rtp://$IP:$FIRSTPORT?pkt_size=1200" \
-an \
-pix_fmt yuv420p \
- -codec:v vp8 -quality realtime -deadline realtime -cpu-used 15 \
+ -codec:v vp8 -quality realtime -deadline 1000000 -cpu-used 15 \
-b:v "$VBITRATE" -minrate "$VBITRATE" -maxrate "$VBITRATE" \
-undershoot-pct 95 -bufsize $((6000*VBITRATE/1000)) -rc_init_occupancy $((4000*VBITRATE/1000)) \
-max-intra-rate 0 \
-qmin 4 -qmax 56 \
- -static-thresh 500 -skip_threshold 50 \
-f rtp -payload_type 100 "rtp://$IP:$((FIRSTPORT+2))?pkt_size=1200"