diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-16 19:38:15 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-16 19:38:15 +0200 |
commit | b5dd71d97379079416346635a142467a987ff642 (patch) | |
tree | 2cab6d04d50c7121ff292a994f8a5d29946d7975 /bin/encodevideo+loop+stream | |
parent | eb1811763a86c74d9e88e9f35d1d2b2045b98167 (diff) |
Add 1s latency (deadline). Stop drop frames (bandwidth limits are not strict).
Diffstat (limited to 'bin/encodevideo+loop+stream')
-rwxr-xr-x | bin/encodevideo+loop+stream | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/encodevideo+loop+stream b/bin/encodevideo+loop+stream index 761bf6f..d0310b0 100755 --- a/bin/encodevideo+loop+stream +++ b/bin/encodevideo+loop+stream @@ -16,16 +16,15 @@ FIRSTPORT=${2:-5002} # even number - next 3 ports used too 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 +# + Add 1s latency (deadline) # + Use same RTP payload types as GStreamer ffmpeg -threads auto -re \ -stream_loop -1 -i "$INPUT" \ -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" |