youtube-dl 使用小记
youtube-dl 是一款强大的命令行下载工具,简简单单的一条命令加上多样化的参数,就可以从网络上下载任何视频。
1. window下安装
直接上官网下载 youtube-dl.exe 文件,配置到电脑的环境变量当中,或者不配置也可,在包含 youtube-dl 的文件夹下运行该命令即可。
youtube-dl 是命令行工具,其所有操作都是相对于当前路径而言的,当然下载视频时我们也可以更改下载路径。
2. youtube-dl 使用
使用 youtube-dl 的格式如下所示:(简单明了吧!其强大的参数才是令人叹为观止。)
youtube-dl [参数] [音视频url]
3. youtube-dl 参数
在 youtube-dl 的 参数列表 中可以查看全部的参数。
下面记录一下自己常用到的参数:
视频格式参数
# 查看所有视频格式
-F, --list-formats List all available formats of requested
videos
字幕参数
--write-sub Write subtitle file
--write-auto-sub Write automatically generated subtitle file
(YouTube only)
--all-subs Download all the available subtitles of the
video
--list-subs List all available subtitles for the video
--sub-format FORMAT Subtitle format, accepts formats
preference, for example: "srt" or
"ass/srt/best"
--sub-lang LANGS Languages of the subtitles to download
(optional) separated by commas, use --list-
subs for available language tags
在视频中嵌入字幕:
--embed-subs Embed subtitles in the video (only for mp4,
webm and mkv videos)
(参数太多,没法列举,要使用是直接查看 youtube-dl 参数列表,然后再记录到这里。)