From b5031c66145672dcb42cb2176483c028361460a4 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 23 Mar 2026 22:33:56 +0100 Subject: [PATCH] fix: use bestaudio/best/b format selector for broader yt-dlp compatibility --- app/downloader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/downloader.py b/app/downloader.py index cdce63c..7892bfa 100644 --- a/app/downloader.py +++ b/app/downloader.py @@ -48,6 +48,7 @@ async def extract_audio(url: str) -> Path: "--extract-audio", "--audio-format", "mp3", "--audio-quality", "128K", + "--format", "bestaudio/best/b", "--output", outtmpl, ]