simply dl original audio on #audio (?)

This commit is contained in:
Tomáš Mládek 2018-02-04 23:38:07 +01:00 committed by Tomááas Mladek
parent 9c8499101f
commit d437814d3b

View file

@ -55,10 +55,10 @@ def download_ydl(urls, subdir, date, extract=False):
} }
if extract: if extract:
ydl_opts['format'] = 'bestaudio' ydl_opts['format'] = 'bestaudio'
ydl_opts['postprocessors'] = [{ # ydl_opts['postprocessors'] = [{
'key': 'FFmpegExtractAudio', # 'key': 'FFmpegExtractAudio',
'preferredcodec': 'wav' # 'preferredcodec': 'wav'
}] # }]
with youtube_dl.YoutubeDL(ydl_opts) as ydl: with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(urls) ydl.download(urls)
out_dir = f'{OUT_DIR}/{subdir}/' out_dir = f'{OUT_DIR}/{subdir}/'