在阅读Youtube_DL文档的同时,我看到了format
的一个选项,并且不太明白它意味着什么,我也找不到options.py
文件。
| format: Video format code. See options.py for more information.
这是一个安静的模块,存在很少的帖子(我可以找到),所以对于谁知道它 - 这是你在选项词典中给出YoutubeDL
类的东西吗?像这样:
youtube_dl.YoutubeDL({'format':'mp3'})
答案 0 :(得分:1)
格式是指“视频格式选项”,如果我们查看options.py,您会看到添加的参数选项here说help='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