Skip to content
Snippets Groups Projects
Commit 32ff8b9f authored by Calvin Walton's avatar Calvin Walton
Browse files

RnP: Fix bitrate in screenshare.yml

I forgot to include the 'K' multiplier on the bitrate values, so they
were all 1000 times too low.
parent 2ceaa40b
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ formats:
- [ '-pass', '1',
# Video
'-c:v', 'libvpx-vp9',
'-crf', '32', '-b:v', '1024', '-minrate', '512', '-maxrate', '1485',
'-crf', '32', '-b:v', '1024K', '-minrate', '512K', '-maxrate', '1485K',
'-quality', 'good', '-speed', '4', '-g', '240',
'-tile-columns', '2', '-threads', '8',
# Disable audio in first pass
......@@ -35,7 +35,7 @@ formats:
- [ '-pass', '2',
# Video
'-c:v', 'libvpx-vp9',
'-crf', '32', '-b:v', '1024', '-minrate', '512', '-maxrate', '1485',
'-crf', '32', '-b:v', '1024K', '-minrate', '512K', '-maxrate', '1485K',
'-quality', 'good', '-speed', '2', '-g', '240',
'-tile-columns', '2', '-threads', '8',
# Audio
......@@ -45,7 +45,7 @@ formats:
'-f', 'webm' ]
# Single-pass encoding - faster, lower quality
# - [ '-c:v', 'libvpx-vp9',
# '-crf', '32', '-b:v', '1024', '-minrate', '512', '-maxrate', '1485',
# '-crf', '32', '-b:v', '1024K', '-minrate', '512K', '-maxrate', '1485K',
# '-quality', 'good', '-speed', '4', '-g', '240',
# '-tile-columns', '2', '-threads', '8',
# '-c:a', 'libopus',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment