Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Remove .cue files
- rm /var/www/radiorecorder/ripps/*.cue
- #Save file list of recordings
- FOLDER=$(ls -td /var/www/radiorecorder/ripps/* | head -1)
- cd "$FOLDER"
- #Create an m3u playlist from files
- ls -tr | grep "mp3" > "$FOLDER"/" !PLAYLIST.m3u"
- rm -r "$FOLDER"/incomplete
- #Write file names to MP3 tags
- lltag --format "%a - %A" --preserve-time --no-path --verbose --yes *.mp3
- #Download and embed album covers for all files in folder
- sacad_r -i -f -a de --amazon-sites de -v . 500 +
- #Convert MP3 tags to older version for compatibility
- eyeD3 --fs-encoding=utf8 --to-v2.3 *.mp3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement