web-dev-qa-db-ja.com

LinuxでYouTubeプレイリストのすべてのビデオをダウンロードする方法は?

そのためにyoutube-dlを使用できますか?私はyoutube-dlの助けを借りてyoutubeビデオをダウンロードしましたが、1つずつダウンロードしました。特定のプレイリストのすべてのビデオをダウンロードできるコマンドはありますか?

2
codedevil

更新された回答:

以下のコマンドを使用してプレイリストをダウンロードします。

youtube-dl -i -o (location) http://www.youtube.com/playlist?list=XXXXXXXXXXX 

どこ

-o, --output TEMPLATE   Output filename template, see the "OUTPUT TEMPLATE"
-i, --ignore-errors              Continue on download errors, for example to
                                 skip unavailable videos in a playlist

出力テンプレート を参照してください

例:

$ youtube-dl --get-filename -o '%(title)s.%(ext)s' BaW_jenozKc
youtube-dl test video ''_ä↭????.mp4    # All kinds of weird characters

$ youtube-dl --get-filename -o '%(title)s.%(ext)s' BaW_jenozKc --restrict-filenames
youtube-dl_test_video_.mp4          # A simple file name

# Download YouTube playlist videos in separate directory indexed by video order in a playlist
$ youtube-dl -o '%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s' https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re

# Download all playlists of YouTube channel/user keeping each playlist in separate directory:
$ youtube-dl -o '%(uploader)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s' https://www.youtube.com/user/TheLinuxFoundation/playlists

# Download Udemy course keeping each chapter in separate directory under MyVideos directory in your home
$ youtube-dl -u user -p password -o '~/MyVideos/%(playlist)s/%(chapter_number)s - %(chapter)s/%(title)s.%(ext)s' https://www.udemy.com/Java-tutorial/

# Download entire series season keeping each series and each season in separate directory under C:/MyVideos
$ youtube-dl -o "C:/MyVideos/%(series)s/%(season_number)s - %(season)s/%(episode_number)s - %(episode)s.%(ext)s" http://videomore.ru/kino_v_detalayah/5_sezon/367617

# Stream the video being downloaded to stdout
$ youtube-dl -o - BaW_jenozKc

デフォルトでは、youtube-dlは最高の品質をダウンロードしようとしますが、他の形式をダウンロードしたい場合があるため、コマンドを使用します。

youtube-dl -i -o (location) -f mp4 http://www.youtube.com/playlist?list=XXXXXXXXXXX

注:

オプション-citkまたは-citwは、現在必要のない古い回答にあります。 youtube-dl FAQs をご覧ください。

参照:

10
pl_rock