summaryrefslogtreecommitdiff
path: root/bin/loop+encode+stream
diff options
context:
space:
mode:
Diffstat (limited to 'bin/loop+encode+stream')
-rwxr-xr-xbin/loop+encode+stream5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/loop+encode+stream b/bin/loop+encode+stream
index 38b6496..9485df8 100755
--- a/bin/loop+encode+stream
+++ b/bin/loop+encode+stream
@@ -21,11 +21,12 @@ 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" \
-codec:a libopus -ac 2 -b:a "$ABITRATE" -ar 48000 \
-vn \
- -f rtp "rtp://$IP:$FIRSTPORT?pkt_size=1200" \
+ -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 \
@@ -34,4 +35,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"