Youtube_DL下载格式(python 3)

时间:2018-03-30 20:25:28

标签: python python-3.x youtube-dl

在阅读Youtube_DL文档的同时,我看到了format的一个选项,并且不太明白它意味着什么,我也找不到options.py文件。

 |  format:            Video format code. See options.py for more information.

这是一个安静的模块,存在很少的帖子(我可以找到),所以对于谁知道它 - 这是你在选项词典中给出YoutubeDL类的东西吗?像这样:

youtube_dl.YoutubeDL({'format':'mp3'})

2 个答案:

答案 0 :(得分:1)

格式是指“视频格式选项”,如果我们查看options.py,您会看到添加的参数选项herehelp='Video format code, see the "FORMAT SELECTION" for all the info')

所以是的,您可以在FORMAT SELECTION

中详细了解它

答案 1 :(得分:0)

视频格式选项:

-f, --format FORMAT Video format code, see the "FORMAT SELECTION" for all the info

-F, --list-formats               List all available formats of requested videos

从手册中可以使用如下:

youtube-dl -F link_to_video

您可以使用格式代码获取视频中的所有格式,然后选择所需格式并下载视频

youtube-dl -f format_code link_to_video