diff options
Diffstat (limited to 'discord/player.py')
| -rw-r--r-- | discord/player.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/player.py b/discord/player.py index 4384d9fd..cbfd000a 100644 --- a/discord/player.py +++ b/discord/player.py @@ -180,7 +180,7 @@ class FFmpegPCMAudio(FFmpegAudio): ------------ source: Union[:class:`str`, :class:`io.BufferedIOBase`] The input that ffmpeg will take and convert to PCM bytes. - If ``pipe`` is True then this is a file-like object that is + If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg. executable: :class:`str` The executable name (and path) to use. Defaults to ``ffmpeg``. @@ -253,7 +253,7 @@ class FFmpegOpusAudio(FFmpegAudio): ------------ source: Union[:class:`str`, :class:`io.BufferedIOBase`] The input that ffmpeg will take and convert to Opus bytes. - If ``pipe`` is True then this is a file-like object that is + If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg. bitrate: :class:`int` The bitrate in kbps to encode the output to. Defaults to ``128``. |