Skip to content

Commit

Permalink
Split ffmpeg args
Browse files Browse the repository at this point in the history
FFmpeg is actually capable of parsing this correctly but we split it for
consistency's sake.
  • Loading branch information
imayhaveborkedit committed Aug 23, 2023
1 parent 62c1ab2 commit b276f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discord/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@ def __init__(
'-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

Expand Down

0 comments on commit b276f3f

Please sign in to comment.