LoginSignup
4
1

More than 5 years have passed since last update.

youtube-dl を使ってSHOWROOMを保存する方法

Last updated at Posted at 2017-10-26

youtube-dl を使えばSHOWROOMを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

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

https://www.showroom-live.com/hogehoge

録画する

macOS
youtube-dl https://www.showroom-live.com/hogehoge
  • ^C を押して終了する

Press [q] to stop, [?] for help

と表示されるが、qは効かない

確認する

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

高度な操作

youtube-dl/README.md at master · rg3/youtube-dl
にたくさんオプションが説明されている

4
1
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
4
1