web-dev-qa-db-ja.com

ユーザー認証と2FAを必要とする動画をyoutube-dlでダウンロードするにはどうすればよいですか?

私のプライベートビデオをダウンロードしようとすると、次のようになります。

youtube-dl https://youtu.be/Q-xxxx-xxxx
[youtube] Q-xxxx-xxxx: Downloading webpage
[youtube] Q-xxxx-xxxx: Downloading video info webpage
WARNING: Unable to extract video title
ERROR: This video is unavailable.

ユーザー名とパスワードを使用しようとすると、2FAで失敗します。

youtube-dl [email protected]  https://youtu.be/Q-xxxx-xxxx
Type account password and press [Return]: 
[youtube] Downloading login page
[youtube] Looking up account info
[youtube] Logging in
Type 2-step verification code and press [Return]: 
[youtube] Submitting TFA code
WARNING: Unable to submit TFA code: HTTP Error 400: Bad Request
[youtube] Q-xxxx-xxxx: Downloading webpage
[youtube] Q-xxxx-xxxx: Downloading video info webpage
WARNING: Unable to extract video title
ERROR: This video is unavailable.

ChromeのEditThisCookieでエクスポートされた--cookiesを使用しようとすると、失敗します。Chromeのビデオに移動し、クッキーをファイルに入れます。

youtube-dl --cookies=cookies.txt  https://youtu.be/Q-xxxx-xxxx
Traceback (most recent call last):
  File "/usr/bin/youtube-dl", line 11, in <module>
    load_entry_point('youtube-dl==2018.6.14', 'console_scripts', 'youtube-dl')()
  File "/usr/lib/python3.6/site-packages/youtube_dl/__init__.py", line 472, in main
    _real_main(argv)
  File "/usr/lib/python3.6/site-packages/youtube_dl/__init__.py", line 439, in _real_main
    with YoutubeDL(ydl_opts) as ydl:
  File "/usr/lib/python3.6/site-packages/youtube_dl/YoutubeDL.py", line 414, in __init__
    self._setup_opener()
  File "/usr/lib/python3.6/site-packages/youtube_dl/YoutubeDL.py", line 2303, in _setup_opener
    self.cookiejar.load()
  File "/usr/lib/python3.6/http/cookiejar.py", line 1784, in load
    self._really_load(f, filename, ignore_discard, ignore_expires)
  File "/usr/lib/python3.6/http/cookiejar.py", line 2007, in _really_load
    filename)
http.cookiejar.LoadError: 'cookies.txt' does not look like a Netscape format cookies fil

Youtube-dlでプライベートビデオをダウンロードするにはどうすればよいですか?

編集:

私もアプリのパスワードを試しましたが、何らかの理由でこれも失敗しました:

youtube-dl [email protected] --password=xxxxxxxxx youtu.be/Q-xxxxxxxx
[youtube] Downloading login page
[youtube] Looking up account info
[youtube] Logging in
WARNING: Unable to login: Invalid password
[youtube] Q-xxxxxx: Downloading webpage
[youtube] Q-xxxxxx: Downloading video info webpage
WARNING: Unable to extract video title
ERROR: This video is unavailable.
7
Dave Parrish

--cookiesルートを使用して非公開動画をダウンロードすることができました。最初にCookieをEditscapeCookieのオプションであるNetscape形式にフォーマットする必要がありました。 https://youtube.com だけでなく https://accounts.google.com にもCookieが必要になることに注意してください。 EditThisCookie Chrome pluginを使用して、これを手動で行う必要があります。

次に、EditThisCookieで生成されたCookieの形式をcurlで修正する必要がありました。 curl -b oldcookiefile.txt --cookie-jar newcookiefile.txt 'https://youtube.com'など。

次に、--cookiesフラグをyoutube-dlと一緒に使用して、非公開動画をダウンロードできます。

また、私は ブログ投稿 を作成して、私が学んだことをさらに詳しく説明しました。

13
Dave Parrish