我试图弄清楚如何使用python脚本使用youtube-dl,我只想下载mp3&无法弄清楚如何使用“postprocessor_args”选项。它是否需要一个字符串或一个选项的字典和&有哪些选择?
我尝试阅读源代码但无法找到“postprocessor_args”的使用位置或方式
import youtube_dl
options = {'outtmpl': '%(id)s%(ext)s'
'postprocessor_args': "What to add here? dict or string?"
}
ydl = youtube_dl.YoutubeDL(options)
with ydl:
result = ydl.extract_info(
'http://www.youtube.com/watch?v=xxxxxx',
download=False # We just want to extract the info
)