**
我需要添加什么以指定所有下载mp3都将转到此目录:e:/ python / downloadedsongs
ydl_opts = {
'format': 'bestaudio/best',
'download_archive': 'downloaded_songs.txt',
'outtmpl': '%(title)s.%(ext)s',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'logger': MyLogger(),
'progress_hooks': [my_hook],
}
如果我正确理解的话,outtmpl是输出文件名称模板。
**
最佳答案
outtmpl可以包含目录名称,只需设置即可
'outtmpl': 'e:/python/downloadedsongs/%(title)s.%(ext)s',