我想用 youtubedl 下载视频
我的选项设置为:
ydl_opts = {
'verbose': False,
'ignoreerrors': True,
'cachedir': None,
'outtmpl': "%(title)s.%(ext)s",
'format': 'm4a/bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'm4a',
}]
}
但是程序给了我这个错误
[download] Got error: HTTP Error 403: Forbidden
ERROR: fragment 1 not found, unable to continue
我使用的是 pip 提供的最新版本 youtube-dl。
我尝试添加引荐来源网址,因为我从上一篇文章中读到这可能有效,但没有成功。