feat: capture yt-dlp stderr on download failures for debugging

Add StderrLog field to DownloadJob and collect all stderr lines during
download. Log the captured stderr output when a download fails to help
diagnose exit code 2 errors (geo-restrictions, auth, etc.).
This commit is contained in:
2026-06-25 16:12:03 +03:30
parent 8408b17ca0
commit cd7aaeebc2
3 changed files with 10 additions and 6 deletions

View File

@@ -128,6 +128,7 @@ type DownloadJob struct {
FilePath string
Title string
QuotaApplied bool
StderrLog string
CancelCh chan struct{}
Cmd *exec.Cmd
}