Dereckson pad/MP3
From Nasqueron Agora
Tagging from filenames
Regex to add ID3 tags based on filenames 01. Something.mp3:
^(..)\. (.*)\.mp3$
→ id3v2 -T $1/13 -t "$2" "$0"
Replace /13 by the total number of tracks (or remove it).
Regex to add ID3 tags based on filenames 01. Something.mp3:
^(..)\. (.*)\.mp3$
→ id3v2 -T $1/13 -t "$2" "$0"
Replace /13 by the total number of tracks (or remove it).