diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-16 17:40:28 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-16 17:40:28 +0200 |
commit | eb1811763a86c74d9e88e9f35d1d2b2045b98167 (patch) | |
tree | 720176fb1a051eb19ba3303fcec9f71ccef14c06 /bin/decode+edit+loop+encode+stream | |
parent | 0392b18cd3fc116b19df0393822c9d6e0817073c (diff) |
Use same RTP payload types as GStreamer.
Diffstat (limited to 'bin/decode+edit+loop+encode+stream')
-rwxr-xr-x | bin/decode+edit+loop+encode+stream | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/decode+edit+loop+encode+stream b/bin/decode+edit+loop+encode+stream index a6daf07..6a69fe8 100755 --- a/bin/decode+edit+loop+encode+stream +++ b/bin/decode+edit+loop+encode+stream @@ -26,6 +26,7 @@ VBITRATE=256000 # + loop-in-filter trick based on http://video.stackexchange.com/a/16933 # + scale+watermark trick based on http://stackoverflow.com/a/10937357 # + Drop frames, aggressively treat as static, and use fastest cpu +# + Use same RTP payload types as GStreamer ffmpeg -threads auto -re \ -f lavfi -i "movie=filename=$INPUT:loop=$ITERATIONS, setpts=N/(FRAME_RATE*TB)" \ -i "$LOGO" \ @@ -40,4 +41,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" |