Split ffmpeg args

FFmpeg is actually capable of parsing this correctly but we split it for
consistency's sake.
This commit is contained in:
Imayhaveborkedit
2023-08-23 17:47:48 -04:00
committed by GitHub
parent 62c1ab21b2
commit b276f3f5a2

View File

@ -439,8 +439,8 @@ class FFmpegOpusAudio(FFmpegAudio):
'-ac', '2',
'-b:a', f'{bitrate}k',
'-loglevel', 'warning',
'-fec true',
'-packet_loss 15',
'-fec', 'true',
'-packet_loss', '15',
'-blocksize', str(self.BLOCKSIZE)))
# fmt: on