Created
June 7, 2018 06:28
-
-
Save ookcode/693d66d498e837c57e86f2a6013e4495 to your computer and use it in GitHub Desktop.
袁腾飞全系列视频的mp3下载脚本
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
######################################## | |
# | |
# 使用youtube-dl库下载 | |
# https://github.com/rg3/youtube-dl | |
# | |
######################################## | |
# 腾飞五千年系列———中华文明起源 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSoSF2pFkEqx_4mdCbsB0CDD -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———成吉思汗 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSogYoupUMih5B0NoVKOUXR2 -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———春秋战国 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSo5kVeih4vK_xcghxs8RUqG -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———汉末三国 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSqUKcsA3GxzIng7TWEuYz4m -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———秦 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSpu3iS8xvkQ88qo13zXJ6Ou -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———西夏 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSodUGWpEmQf5T0PHsD17d92 -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———辽 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSrNxdwy0Lu3Py_lAbSHFF24 -o '%(playlist)s/%(title)s.%(ext)s' | |
# 腾飞五千年系列———金 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSruyKaS07Cs6Gt-9D0GCAjE -o '%(playlist)s/%(title)s.%(ext)s' | |
# 历史课精选 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSoUMLknu9344tDUWK0mblgk -o '%(playlist)s/%(title)s.%(ext)s' | |
# 说历史 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSqiEP4lPB7rx5XDoJdtmKBx -o '%(playlist)s/%(title)s.%(ext)s' | |
# 二战那些事 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSpwaA1h-0BbE320rQyhlSYb -o '%(playlist)s/%(title)s.%(ext)s' | |
# 精华学校系列 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSpPCJaNDqSbJ-s0N3c1cKAQ -o '%(playlist)s/%(title)s.%(ext)s' | |
# 这个历史挺靠谱第一季 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSpPVUcMvhX2JG5-HxvTHgFW -o '%(playlist)s/%(title)s.%(ext)s' | |
# 这个历史挺靠谱第二季 | |
youtube-dl -x --audio-format mp3 --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLnzvH6pAJKSpWNJzEWzNgD-lX3MCJ6WzR -o '%(playlist)s/%(title)s.%(ext)s' |
[youtube:playlist] PLnzvH6pAJKSoSF2pFkEqx_4mdCbsB0CDD: Downloading webpage
ERROR: This playlist is private, use --username or --netrc to access it.
好人一生平安
红红火火
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey, I had the following error
[youtube:playlist] PLnzvH6pAJKSoSF2pFkEqx_4mdCbsB0CDD: Downloading webpage
ERROR: This playlist is private, use --username or --netrc to access it.
Did you create the list (and set it private)? If so, do you mind to set it to be accessible for general public? Thanks!