13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

youtube-dlでのYoutubeの動画のダウンロード

Posted at

#はじめに

研究に使うデータ収集のためにyoutubeの動画をダウンロードする機会があったので、記事にしてみました。

この方法は簡単で安定してyoutubeの動画をダウンロードできます。

#環境
Windows10

#youtube-dlとは
Youtubeから動画をダウンロードするためのコマンドラインのプログラムです。
WindowsではPythonがインストールされていれば動作します。

#youtube-dlのインストール

インストール
$ pip install youtube-dl

インストールが完了したら一度バージョンを見て、最新のものになっているか確認してください。

バージョン確認
$ youtube-dl --version

バージョンが最新のものでなければアップデートをする必要があります。

アップデート
$ pip install -U youtube-dl

#Youtube動画のダウンロード

youtube-dlのインストールができたら、以下の方法でYoutubeの動画のダウンロードができます。
また、ディレクトリは動画を保存したい場所にしてください。

$ youtube-dl "ダウンロードしたい動画のURL"

#最後に
今回、初めてではありますが、自分のやったことを共有できたらと思い投稿しました。

不明な点や、改善すべき点などがあればコメントでお願いします。
他にも共有できることがあれば投稿してみようと思います。

13
14
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
13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?