[feature] download youtube audio script
This commit is contained in:
parent
9181d28481
commit
ffc43f01f5
29
bin/download-yt-mp3.sh
Executable file
29
bin/download-yt-mp3.sh
Executable file
|
@ -0,0 +1,29 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
# https://github.com/TheFrenchGhosty
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
youtube-dlc \
|
||||||
|
--format "(bestaudio[acodec^=opus]/bestaudio)/best" \
|
||||||
|
--verbose \
|
||||||
|
--force-ipv4 \
|
||||||
|
--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 "%(title)s - %(uploader)s - %(upload_date)s/%(title)s - %(uploader)s - %(upload_date)s [%(id)s].%(ext)s" \
|
||||||
|
--merge-output-format "mkv" \
|
||||||
|
"$@" 2>/tmp/download-yt-audio-error.log
|
Loading…
Reference in New Issue
Block a user