More VP9 tweaks

This commit is contained in:
tcely 2025-02-07 19:12:17 -05:00 committed by GitHub
parent d1eecf19c2
commit 3039e3105c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -281,7 +281,7 @@ def download_media(
if 'av1-' in ofn: if 'av1-' in ofn:
codec_options.extend(['-c:v', 'libsvtav1', '-preset', '8', '-crf', '35']) codec_options.extend(['-c:v', 'libsvtav1', '-preset', '8', '-crf', '35'])
elif 'vp9-' in ofn: elif 'vp9-' in ofn:
codec_options.extend(['-c:v', 'libvpx-vp9', '-b:v', '0', '-crf', '31', '-row-mt', '1']) codec_options.extend(['-c:v', 'libvpx-vp9', '-b:v', '0', '-crf', '31', '-row-mt', '1', '-tile-columns', '2'])
if '-opus' in ofn: if '-opus' in ofn:
codec_options.extend(['-c:a', 'libopus']) codec_options.extend(['-c:a', 'libopus'])
set_ffmpeg_codec = not ( set_ffmpeg_codec = not (