fix: resolve silent voice playback on VPS and queue screenshare streams

- Call unpause() when starting a stream in DiscordPlayer to prevent getting stuck in a paused state.
- Call stop() instead of pause() in VoiceController on disconnect to fully reset the player.
- Add user-agent header to ffmpeg calls in MusicPlayer and Transcoder to prevent YouTube 403 Forbidden on VPS.
- Add screenshare streams to the media queue when successfully started.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-05-18 05:09:40 +07:00
co-authored by Claude Opus 4.7
parent 279ae07745
commit 3ae7a4c6ad
6 changed files with 36 additions and 5 deletions
+14 -2
View File
@@ -77,10 +77,20 @@ export function createMusicPlayer(
}
export function buildFfmpegArgs(source: string): string[] {
return [
const args = [
"-hide_banner",
"-loglevel",
"warning",
];
if (source.startsWith("http://") || source.startsWith("https://")) {
args.push(
"-user_agent",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"
);
}
args.push(
"-i",
source,
"-vn",
@@ -93,5 +103,7 @@ export function buildFfmpegArgs(source: string): string[] {
"-f",
"s16le",
"pipe:1",
];
);
return args;
}