-
-
Save bafflingscience/c6c2a1e3b29da5ec1b073e98dfd3a716 to your computer and use it in GitHub Desktop.
Revisions
-
bafflingscience revised this gist
Apr 7, 2020 . 1 changed file with 17 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,19 @@ #! /bin/bash ytdl() { /usr/local/bin/youtube-dl \ --verbose \ --playlist-start 1 \ --download-archive /Users/user/Archive/playlist_archive.txt \ --add-metadata \ --embed-thumbnail \ --write-description \ --xattrs \ --cookies /Users/user/Archive/cookies.txt \ -i \ -o "/Volumes/fourtb/Video/Playlists/%(playlist_title)s/%(playlist_index)s - %(title)s.%(ext)s" \ -f "mp4" \ $1 } ytdl $1 echo "Great job Dave!" -
bafflingscience revised this gist
Mar 9, 2020 . No changes.There are no files selected for viewing
-
bafflingscience revised this gist
Mar 9, 2020 . 2 changed files with 5 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ #! /bin/bash ytdl() { /usr/local/bin/youtube-dl -i -o "~/Videos/YouTube/%(playlist)s/%(playlist_index)s-%(title)s.%(ext)s" --yes-playlist --playlist-start 1 -f "mp4" $1 } ytdl $1 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +0,0 @@ -
bafflingscience revised this gist
Mar 7, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #! /bin/bash ytdl() { cd /Volumes/path/to/save/playlist; /usr/local/bin/youtube-dl -i -o "%(playlist_index)s-%(title)s.%(ext)s" --yes-playlist --playlist-start 1 -f "mp4" $1 } ytdl $1 -
bafflingscience created this gist
Mar 7, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ #! /bin/bash ytdl() { cd /Volumes/fourtb/Video/YouTube; /usr/local/bin/youtube-dl -i -o "%(playlist_index)s-%(title)s.%(ext)s" --yes-playlist --playlist-start 1 -f "mp4" $1 } ytdl $1