How to get a list of all current tags from a mp3 file?
Does someone know a possibility in Mp3tag to get a report of all tag contents out of a mp3 file regardless of their names (complete tag dump)?
This output what 'extended tags' displays but redirected by script export into a file?
Is there any way to use wildcards to select a group of tags e.g. all tags looking like 'A*'?
Kennt jemand eine Möglichkeit in Mp3tag, mittels Exportskript alle Taginhalte aus einer mp3 Datei auszugeben ungeachtet ihrer Namen (kompletter tag dump)?
Also das was 'Erweiterte Tags' anzeigt mittels Exportskript in eine Datei ausgeben?
Gibt es so etwas wie einen Joker, z.B. für eine Liste aller Taginhalte, die mit 'A' beginnen ('A*')?
Florian, das sieht ja schon recht vielversprechend aus!
Wenn du jetzt nur noch ein anderes Zeichen als Platzhalter erfindest - eben nicht das Komma (!) - dann könnte man vielleicht die Ausgabe sogar noch ansehnlich in Spalten formatieren.
Ok, back to english language.
In the expression $list(,,) the comma character has in fact not the meaning of a separator but it is really a placeholder.
The first comma is replaced by tag name and the second comma is replaced by tag value.
The function only works when there are coded two comma characters, no one less, no one more.
It seems so that you replace the comma placeholders by your internal processing with the actually contents.
Belonging to the underlying context of your script language this is totally weird functionality.
Concrete example: Output of tagvalue is wanted to be limited to 10 characters ... $list(,$left(,,10))
... this does not work, because there are three comma characters in the expression,
and no one can imagine what exception would be thrown when using such an expression at other places in Mp3tag.
Or look at this wild thing, that gives really readable output: $list(,$left,(10))
So what can we do to get something of a tagdump function seamlessly integrated into the global Mp3tag context?
I think it should simply read like 'foreach tag do' ...
... with limitation for the case, if %_tag_value% contains binary data, then output should be suppressed or replaced by a special symbol [#BINDATA#] or something else,
... with ability to set %_tag_mask% to something like 'ARTIST*', so it should be a function $SetTagMask('ARTIST*').
So there is no weird replacing of commas. But you're right: you can't apply scripting functions to the various field names and values (and this won't be possible in future versions of Mp3tag).
Sorry for going off-topic, but does md5audio do what i would expect: to give a checksum just for the audio part of an mp3, meaning that I can change tags without the md5 changing?
Yes , I think so.
The md5audio hash is the checksum referring only to the audio stream part of the mp3 file.
The md5 hash is the checksum overall of mp3 file including tags.
It think it should be possible to detect stream duplicates by their identically md5audio checksum (having a totally clean unchanged identical mp3 stream in both files which are compared).
Please try it out for yourself and share the result with us.