0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Linux】yt-dlp を使ってYouTubeなどの動画をダウンロードする

Last updated at Posted at 2025-01-02

インストール for Linux

下記手順でインストールする。

# yt-dlp のインストール
wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O ~/.local/bin/yt-dlp

# ファイルのパーミッション変更
chmod a+rx ~/.local/bin/yt-dlp

# ffmpeg のインストール(推奨)
sudo apt update
sudo apt install ffmpeg
# アップデート
yt-dlp -U

# バージョン確認
yt-dlp --version

参考 - yt-dlp のインストール手順:

動画ダウンロード方法

コマンドの後ろにURLを指定するだけ。
特にオプションを指定しなければ、最高画質で保存される。

# 動画はカレントディレクトリに保存される
yt-dlp https://www.youtube.com/watch?v=XXXXXXXXXXX

yt-dlpで動画がダウンロードできるサイト

0
0
1

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?