Fix downloading audio only

This commit is contained in:
Wizzard 2024-02-05 00:14:13 -05:00
parent 46bbdd030e
commit f32f0e7d1e
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ download_dir = 'downloads'
os.makedirs(download_dir, exist_ok=True)
ydl_opts = {
'format': 'bestaudio/best',
'format': 'best',
'outtmpl': f'{download_dir}/%(title)s [%(id)s].%(ext)s',
}