2020-06-12 19:54:43 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2021-02-17 15:24:58 +01:00
|
|
|
# TheFrenchGhosty's Ultimate YouTube-DL Scripts Collection: The ultimate collection of scripts for YouTube-DL
|
|
|
|
# https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection
|
2020-06-12 19:54:43 +02:00
|
|
|
# https://github.com/TheFrenchGhosty
|
|
|
|
#
|
2021-03-05 22:56:05 +01:00
|
|
|
# Version: 3.1.1
|
2020-06-12 19:54:43 +02:00
|
|
|
#
|
|
|
|
|
2021-03-05 02:34:52 +01:00
|
|
|
yt-dlp --format "(bestaudio[acodec^=opus]/bestaudio)/best" --verbose --force-ipv4 --sleep-requests 1 --sleep-interval 5 --max-sleep-interval 30 --ignore-errors --no-continue --no-overwrites --download-archive archive.log --add-metadata --write-description --write-info-json --write-annotations --write-thumbnail --embed-thumbnail --extract-audio --match-filter "!is_live & !live" --output "%(playlist)s - (%(uploader)s)/%(upload_date)s - %(title)s/%(upload_date)s - %(title)s [%(id)s].%(ext)s" --batch-file "Source - Playlists.txt" 2>&1 | tee output.log
|