preview-files.jpg
· 21 KiB · Image (JPEG)
Raw
preview-terminal.jpg
· 133 KiB · Image (JPEG)
Raw
ytdlp.sh
· 335 B · Bash
Raw
#!/bin/bash
yt-dlp \
--check-formats \
--progress \
--ignore-errors \
--write-info-json \
--add-metadata \
--audio-format "mp3" \
--extract-audio \
--format bestaudio/best \
--embed-thumbnail \
--restrict-filenames \
--concurrent-fragments 3 \
-o "/path/to/audio/%(uploader)s/%(upload_date>%Y-%m-%d)s - %(title)s (%(id)s).%(ext)s" "$1"
| 1 | #!/bin/bash |
| 2 | yt-dlp \ |
| 3 | --check-formats \ |
| 4 | --progress \ |
| 5 | --ignore-errors \ |
| 6 | --write-info-json \ |
| 7 | --add-metadata \ |
| 8 | --audio-format "mp3" \ |
| 9 | --extract-audio \ |
| 10 | --format bestaudio/best \ |
| 11 | --embed-thumbnail \ |
| 12 | --restrict-filenames \ |
| 13 | --concurrent-fragments 3 \ |
| 14 | -o "/path/to/audio/%(uploader)s/%(upload_date>%Y-%m-%d)s - %(title)s (%(id)s).%(ext)s" "$1" |