我将youtube-dl用于python中的不和谐机器人,它可以正常工作,但是它将文件下载到项目的根目录中。由于它将下载很多视频,因此我希望将其下载到根目录下的目录中。我该怎么做?
这些是我当前的选择:
ytdl_format_options = {
'format': 'bestaudio/best',
'outtmpl': '%(extractor)s-%(id)s-%(title)s.%(ext)s',
'reactrictfilenames': True,
'noplaylist': True,
'nocheckcertificate': True,
'ignoreerrors': False,
'logtostderr': False,
'quiet': True,
'no_warnings': True,
'default_search': 'auto',
'source_addreacs': '0.0.0.0', # bind to ipv4 since ipv6 addreacses cause issues sometimes
'output': r'youtube-dl'
}
ffmpeg_options = {
'before_options': '-nostdin',
'options': '-vn'
}
答案 0 :(得分:0)
在outtmpl
option中设置包含斜杠的输出模板:
ytdl_format_options = {
'outtmpl': 'somewhere/%(extractor_key)s/%(extractor)s-%(id)s-%(title)s.%(ext)s',
...
}
输出模板可以具有很多字段(包括播放列表ID,许可证,格式名称/比特率,专辑名称等等),这取决于您所使用的视频网站所支持的内容。有关更多信息,请参阅youtube-dl documentation of output templates。所有字段都可以用作目录或文件名。