added a script to make animation+ movies out of sequences, updated ytdlpl, and added a custom command to mount pegasus

This commit is contained in:
Jorge Vásquez Pérez
2017-08-31 11:45:25 -07:00
parent 003f6f2f48
commit 103de90e70
3 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
export IFS=$'\n';
for i;
do
youtube-dl -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" -f bestaudio "$i"
#youtube-dl -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" -f bestvideo+bestaudio "$i"
#youtube-dl -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" -f bestaudio "$i"
youtube-dl -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" -f bestvideo+bestaudio "$i"
done;