Browse Source

Split ffmpeg args

FFmpeg is actually capable of parsing this correctly but we split it for
consistency's sake.
pull/9538/head
Imayhaveborkedit 2 years ago
committed by GitHub
parent
commit
b276f3f5a2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      discord/player.py

4
discord/player.py

@ -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

Loading…
Cancel
Save