11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
yt-dlp \
|
|
-f 'ba' \
|
|
--embed-thumbnail \
|
|
--parse-metadata '%(channel&YouTube|YouTube)s:%(artist)s' \
|
|
--parse-metadata "%(channel)s:%(album)s" \
|
|
--embed-metadata \
|
|
-x --audio-format mp3 \
|
|
-o '%(channel)s - %(title)s.%(ext)s' $@
|