summaryrefslogtreecommitdiff
path: root/bin/encodevideo+loop+stream
diff options
context:
space:
mode:
Diffstat (limited to 'bin/encodevideo+loop+stream')
-rwxr-xr-xbin/encodevideo+loop+stream3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/encodevideo+loop+stream b/bin/encodevideo+loop+stream
index f005b4d..761bf6f 100755
--- a/bin/encodevideo+loop+stream
+++ b/bin/encodevideo+loop+stream
@@ -17,6 +17,7 @@ VBITRATE=256000
# based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
# + Drop frames, aggressively treat as static, and use fastest cpu
+# + Use same RTP payload types as GStreamer
ffmpeg -threads auto -re \
-stream_loop -1 -i "$INPUT" \
-an \
@@ -27,4 +28,4 @@ ffmpeg -threads auto -re \
-max-intra-rate 0 \
-qmin 4 -qmax 56 \
-static-thresh 500 -skip_threshold 50 \
- -f rtp "rtp://$IP:$((FIRSTPORT+2))?pkt_size=1200"
+ -f rtp -payload_type 100 "rtp://$IP:$((FIRSTPORT+2))?pkt_size=1200"