13 lines
253 B
Plaintext
13 lines
253 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# --embed-thumbnail \
|
||
|
# --audio-format opus \
|
||
|
youtube-dl \
|
||
|
--ignore-errors \
|
||
|
-f bestaudio \
|
||
|
--rm-cache-dir \
|
||
|
--extract-audio \
|
||
|
--output "%(title)s.%(ext)s" --add-metadata \
|
||
|
--download-archive downloaded.txt \
|
||
|
-a -
|