diff options
| -rw-r--r-- | discord/player.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/player.py b/discord/player.py index adda3584..cfddd2c4 100644 --- a/discord/player.py +++ b/discord/player.py @@ -138,7 +138,7 @@ class FFmpegPCMAudio(AudioSource): args.extend(shlex.split(before_options)) args.append('-i') - args.append('-' if pipe else shlex.quote(source)) + args.append('-' if pipe else source) args.extend(('-f', 's16le', '-ar', '48000', '-ac', '2', '-loglevel', 'warning')) if isinstance(options, str): |