From 070d4a862c5cd7d9c955b71956806f6f799ec8c8 Mon Sep 17 00:00:00 2001 From: toor Date: Tue, 14 Apr 2026 11:07:58 +0200 Subject: [PATCH] Fix stream selection flags for bytohgn fork --- src/downloaders.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/downloaders.go b/src/downloaders.go index 22387a3..55056dd 100644 --- a/src/downloaders.go +++ b/src/downloaders.go @@ -182,7 +182,11 @@ func getDownloadArgs(item Item, mpdPath string, tempDir string) ([]string, error args = append(args, "--key", key) } - args = append(args, "--auto-select") + args = append(args, + "--select-video", "best", + "--select-audio", "all", + "--select-subtitle", "all", + ) sanitizedFilename := sanitizeFilename(item.Filename) args = append(args, "--save-name", sanitizedFilename)