Created
September 17, 2020 20:45
-
-
Save i3p9/acaad2ce3ef76491f4c46384e5538844 to your computer and use it in GitHub Desktop.
Youtube-dl Archiving channels
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
-i | |
-o "%(upload_date)s - %(title)s - [%(resolution)s] [%(id)s].%(ext)s" | |
--download-archive archive.txt | |
-a channels.txt | |
--prefer-ffmpeg | |
--merge-output-format mkv | |
--add-metadata | |
--write-description | |
--write-thumbnail | |
-v |
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
# |
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
# Funhaus | |
https://www.youtube.com/channel/UCboMX_UNgaPBsUOIgasn3-Q |
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/sh | |
youtube-dl --config-location archive.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put all the files in a folder, make the dl_archive.sh executable by
chmod 755 dl_archive.sh
and run the process by./dl_archive.sh
.This instruction is for MacOS. Rename the
dl_archive.sh
todl_archive.bat
and delete the first line to run the script in Windows system.