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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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