Dereckson pad/MP3

From Nasqueron Agora
Revision as of 09:54, 11 July 2018 by Dereckson (talk | contribs) (Created page with "== Tagging from filenames == Regex to add ID3 tags based on filenames <kbd>01. Something.mp3</kbd>: <code>^(..)\. (.*)\.mp3$</code> → <code>id3v2 -T $1/13 -t "$2" "$0"</co...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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).