3
5

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 5 years have passed since last update.

youtube-dl を使ってTwitterの動画を保存する方法

Last updated at Posted at 2017-10-25

youtube-dl を使えばTwitterの動画をmp4ファイルに録画して保存することができる

  • この記事はmacOS想定
  • ffmpegさえ利用可能にすればWindowsやLinuxでも使えるのでは

Homebrew のインストール

必須ではないが便利

macOS
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

youtube-dl のインストール

macOS
brew install youtube-dl

インストールできたかの確認

macOS
youtube-dl --version
YYYY.MM.DD

録画したファイルを置く専用フォルダを用意して移動

macOS
$ cd Desktop
$ mkdir video
$ cd video

録画したいTwitter動画のURLを取得

https://twitter.com/hoge/status/hogehogehogehogehogehoge

録画する

youtube-dl https://twitter.com/hoge/status/hogehogehogehogehogehoge

録画が終わると自動的に終了する

確認する

フォルダ内を覗くと
hogehogehogehogehogehoge.mp4
ができているはず

高度な操作

[youtube-dl/README.md at master · rg3/youtube-dl] (https://github.com/rg3/youtube-dl/blob/master/README.md#options)
にたくさんオプションが説明されている

3
5
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
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?