mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 01:16:21 +00:00
Split ffmpeg args
FFmpeg is actually capable of parsing this correctly but we split it for consistency's sake.
This commit is contained in:
@ -439,8 +439,8 @@ class FFmpegOpusAudio(FFmpegAudio):
|
|||||||
'-ac', '2',
|
'-ac', '2',
|
||||||
'-b:a', f'{bitrate}k',
|
'-b:a', f'{bitrate}k',
|
||||||
'-loglevel', 'warning',
|
'-loglevel', 'warning',
|
||||||
'-fec true',
|
'-fec', 'true',
|
||||||
'-packet_loss 15',
|
'-packet_loss', '15',
|
||||||
'-blocksize', str(self.BLOCKSIZE)))
|
'-blocksize', str(self.BLOCKSIZE)))
|
||||||
# fmt: on
|
# fmt: on
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user