我怎么才能找到所有的ydl选项

2024-10-01 13:29:28 发布

您现在位置:Python中文网/ 问答频道 /正文

ydl_opts = {
    'verbose': True,                       #like this
    'format': '{}'.format(int(comboget)),  #format,vebrose,ottmpl
    'outtmpl': '%(title)s-%(id)s.%(ext)s', #how can i find
    'noplaylist': mt,                      #all dictionary
    'logger': MyLogger(),                  #options
    'progress_hooks': [durum],             #how can i find
}
ydl = youtube_dl.YoutubeDL(ydl_opts)
ydl.download([url])

我怎么能在这里找到所有的ydl选项https://github.com/rg3/youtube-dl


Tags: trueformatverboseyoutubefindthiscanlike
1条回答
网友
1楼 · 发布于 2024-10-01 13:29:28

Python模块的所有选项都列在YoutubeDL.py

这是一个小节选

username:          Username for authentication purposes.
password:          Password for authentication purposes.
videopassword:     Password for accessing a video.
usenetrc:          Use netrc for authentication instead.
verbose:           Print additional info to stdout.
quiet:             Do not print messages to stdout.
no_warnings:       Do not print out anything for warnings.
forceurl:          Force printing final URL.
forcetitle:        Force printing title.
forceid:           Force printing ID.
forcethumbnail:    Force printing thumbnail URL.
forcedescription:  Force printing description.
forcefilename:     Force printing final filename.
forceduration:     Force printing duration.
forcejson:         Force printing info_dict as JSON.
dump_single_json:  Force printing the info_dict of the whole playlist
                   (or video) as a single JSON line.
...

相关问题 更多 >