3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

この記事では、youtubeの特定チャンネルで公開されている動画をすべてダウンロードしてきます。既にyt-dlpの使い方に関しては多くの記事が存在しているかと思います。自分用に備忘録として残している側面が強いです。
やろうと思ったきっかけは、某アーティストが不祥事を起こし、あらゆるところから動画が消えそうだったので、自分の楽しみのために残しておきたかったというのがあります。(ダウンロードしたデータは個人での楽しみのみに留めてくださいね)

インストール

簡単にpipでインストールします

 pip3 install -U "yt-dlp[default]" 

動画のダウンロード

以下のコマンド実行ですべて落とせます

yt-dlp -o "%(title)s.%(ext)s" "[チャンネルのURL]" --write-thumbnail -f mp4

-oで出力ファイル名を決定しています。今回の書き方だと、単純に動画のタイトル名.mp4となります。
--write-thumbnailでは、サムネの保存を実行しています。
-f mp4でmp4形式でのダウンロード指定をしています。デフォルトでは.webmで落ちてくるので、変えたい人は付けること。

dt-dlpはyoutube以外の場面でも使えるので活用していきたいですね。
おしまい

参考文献

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?