Co-authored-by: Danny <1695103+Rapptz@users.noreply.github.com>
@ -210,7 +210,8 @@ class FFmpegAudio(AudioSource):
# arbitrarily large read size
data = source.read(8192)
if not data:
self._process.terminate()
if self._stdin is not None:
self._stdin.close()
return
try: