Youtube-dl 错误消息:出现错误:HTTP 错误 403:禁止

问题描述 投票:0回答:1

我想用 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。

我尝试添加引荐来源网址,因为我从上一篇文章中读到这可能有效,但没有成功。

python python-3.x youtube youtube-dl
1个回答
0
投票

根据 pypi,Youtube-DL 已经两年没有收到官方更新了。

通常建议使用其中一支叉子。查看 yt-dlp(这是它的 发布历史记录)。

yt-dlp 通常被认为是大多数用例的直接替代品。

© www.soinside.com 2019 - 2024. All rights reserved.