only use vp9 if also enabled

This commit is contained in:
j 2023-07-29 10:27:47 +02:00
parent 8c977ba11b
commit 4073942ec2
2 changed files with 2 additions and 1 deletions

View File

@ -156,7 +156,7 @@ def stream(video, target, profile, info, audio_track=0, flags={}):
else:
height = 96
if settings.FFMPEG_SUPPORTS_VP9:
if settings.USE_VP9 and settings.FFMPEG_SUPPORTS_VP9:
audio_codec = 'libopus'
video_codec = 'libvpx-vp9'

View File

@ -197,6 +197,7 @@ AUTH_PROFILE_MODULE = 'user.UserProfile'
AUTH_CHECK_USERNAME = True
FFMPEG = 'ffmpeg'
FFPROBE = 'ffprobe'
USE_VP9 = True
FFMPEG_SUPPORTS_VP9 = True
FFMPEG_DEBUG = False