1. ホーム
  2. python

[解決済み] Youtube_dl : ERROR : YouTube は言いました。動画データを抽出できません

2022-02-12 04:41:16

質問

Python3を使って、Youtubeの動画をURL付きでダウンロードするような小さなグラフィックインターフェースを作っています。 私は youtube_dl モジュールがあります。 これは私のコードです。

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=...")


私のコードを実行すると、このエラーが表示されます。

ERROR: YouTube said: Unable to extract video data

見た こちら ビデオ情報が見つからないからということですが、どうすればこの問題を解決できますか?

解決方法は?

youtube-dlをアップデートすると解決しました。インストール方法にもよりますが、コマンドは以下の通りです。

  • youtube-dl --update (自己更新)
  • pip install -U youtube-dl (python経由)
  • brew upgrade youtube-dl (macOS + 自作)
  • choco upgrade youtube-dl (Windows + ショコラトリー)