Skip to content

Instantly share code, notes, and snippets.

@i3p9
Created September 17, 2020 20:45
Show Gist options
  • Save i3p9/acaad2ce3ef76491f4c46384e5538844 to your computer and use it in GitHub Desktop.
Save i3p9/acaad2ce3ef76491f4c46384e5538844 to your computer and use it in GitHub Desktop.
Youtube-dl Archiving channels
-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
# Funhaus
https://www.youtube.com/channel/UCboMX_UNgaPBsUOIgasn3-Q
#!/bin/sh
youtube-dl --config-location archive.conf
@i3p9
Copy link
Author

i3p9 commented Sep 17, 2020

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 to dl_archive.bat and delete the first line to run the script in Windows system.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment