simply dl original audio on #audio (?)

feature-unify_handlers
Tomáš Mládek 2018-02-04 23:38:07 +01:00 committed by Tomááas Mladek
parent 9c8499101f
commit d437814d3b
1 changed files with 4 additions and 4 deletions

View File

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