Dereckson pad/MP3: Difference between revisions

From Nasqueron Agora
(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...")
 
(No difference)

Latest revision as of 09:54, 11 July 2018

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