Youtube_dl : ERROR : YouTube said: Unable to extract video data(Youtube_dl:错误:YouTube 说:无法提取视频数据)
问题描述
我正在用 Python 3 制作一个小的图形界面,它应该下载一个带有 URL 的 youtube 视频.为此,我使用了 youtube_dl
模块.这是我的代码:
I'm making a little graphic interface with Python 3 which should download a youtube video with its URL.
I used the youtube_dl
module for that.
This is my code :
import youtube_dl # Youtube_dl is used for download the video
ydl_opt = {"outtmpl" : "/videos/%(title)s.%(ext)s", "format": "bestaudio/best"} # Here we give some advanced settings. outtmpl is used to define the path of the video that we are going to download
def operation(link):
"""
Start the download operation
"""
try:
with youtube_dl.YoutubeDL(ydl_opt) as yd: # The method YoutubeDL() take one argument which is a dictionary for changing default settings
video = yd.download([link]) # Start the download
result.set("Your video has been downloaded !")
except Exception:
result.set("Sorry, we got an error.")
operation("https://youtube.com/watch?v=...")
当我执行我的代码时,我收到这个错误:
When I execute my code, I get this error:
ERROR: YouTube said: Unable to extract video data
我看到了这里 是因为没有找到任何视频信息,我该如何解决这个问题?
I saw here that it was because it doesn't find any video info, how can I resolve this problem?
推荐答案
更新 youtube-dl 帮助了我.根据您的安装方式,以下是命令:
Updating youtube-dl helped me. Depending on the way you installed it, here are the commands:
youtube-dl --update
(自我更新)pip install -U youtube-dl
(通过python)brew upgrade youtube-dl
(macOS + homebrew)choco upgrade youtube-dl
(Windows + Chocolatey)
youtube-dl --update
(self-update)pip install -U youtube-dl
(via python)brew upgrade youtube-dl
(macOS + homebrew)choco upgrade youtube-dl
(Windows + Chocolatey)
这篇关于Youtube_dl:错误:YouTube 说:无法提取视频数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Youtube_dl:错误:YouTube 说:无法提取视频数据


基础教程推荐
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01