Process
- Find all files with incorrect extensions
- find Artist ! -type d -regex "[^.]+"
replace "Artist" with directory to search. It cannot contain or be "." due to the regex used.
- Find files that are DRM protected and remove them or the protection
#!/bin/bash
if /tmp/mplayer/mplayer.exe -ao dummy -identify "$1" 2>&1 | egrep -i -q -s "encumbered with drm"
then
echo $1;
fi
- Convert remaining all non-MP3 files to MP3 with same quality and transfer tags
- Use MP3Tag to normalize track numbers to 2 digits.
This will help in fixing tags using Jaikoz in a later step
- Open Folder in Jaikoz
- sort by track number then subfolder
- open
Tools
- Replay Gain is a technology for audio level normalization.
- xrecode$$ is a tool for recoding to different formats that supports moving of tags.