fix: Remove unnecessary FFMPEG_OPTIONS for local file handling in VoiceGatewayCog

This commit is contained in:
Slipstream 2025-05-30 22:25:10 -06:00
parent d9bfe0fa6b
commit 1197a345b9
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -24,7 +24,7 @@ except ImportError:
# OpusDecoder is no longer needed as discord-ext-voice-recv provides PCM.
FFMPEG_OPTIONS = {
'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5',
# 'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', # Removed as these are for network streams and might cause issues with local files
'options': '-vn'
}