diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-03-14 12:38:12 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-03-14 12:38:12 +0100 |
commit | b62f7b9330cac68a8bdfafaf004720fe0560da5d (patch) | |
tree | e4f1729a487b2677c74c28d1f71b6ef5d73e99e2 /bin | |
parent | 3e40090dff94088e0be0781d21eede9b78338960 (diff) |
Improve VP8 encoder options.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/send-gst-rtp-v-a | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/send-gst-rtp-v-a b/bin/send-gst-rtp-v-a index 4fcbb61..f79da8b 100755 --- a/bin/send-gst-rtp-v-a +++ b/bin/send-gst-rtp-v-a @@ -38,7 +38,7 @@ case "$VFORMAT" in VENC="x264enc speed-preset=ultrafast tune=zerolatency bitrate=800 byte-stream=true key-int-max=15 intra-refresh=true option-string=\"slice-max-size=8192:vbv-maxrate=80:vbv-bufsize=10\" ! video/x-h264,profile=baseline ! $QUEUE ! rtph264pay" ;; VP8) - VENC="vp8enc min_quantizer=10 max_quantizer=10 cpu-used=10 deadline=1000000 ! video/x-vp8 ! $QUEUE ! rtpvp8pay" + VENC="vp8enc cpu-used=10 threads=2 deadline=10000 ! video/x-vp8 ! $QUEUE ! rtpvp8pay" ;; RAW|'') VENC="rtpvrawpay" |