I have the following temp.txt with these contents:
01. título a.flac
02. título b.flac
03. título c.flac
I convert to the following metaflac.txt template:
metaflac --set-tag=TITLE="" --set-tag=TRACKNUMBER= "01. título a.flac"
metaflac --set-tag=TITLE="" --set-tag=TRACKNUMBER= "02. título b.flac"
metaflac --set-tag=TITLE="" --set-tag=TRACKNUMBER= "03. título c.flac"
with this command in a bat:
FOR /F "tokens=* delims= " %%G IN (temp.txt) DO ECHO metaflac --set-tag=TITLE="" --set-tag=TRACKNUMBER= "%%G">> "Plantilla metaflac.txt"
From there I would like to autocomplete the TRACKNUMBER field (eg TRACKNUMBER = 1 to TRACKNUMBER = 99)
and the field TITLE (TITLE="title a" to TITLE="title z")
Thanks in advance for the help.