Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Verification:
Sum of two plus two?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Admin
« on: September 18, 2019, 22:11:51 »

I see the problem, by default we set ID3v2.4 version of ID3v2 tags. You can't change it for now, we think about solution.
Posted by: icqtoni
« on: September 18, 2019, 18:11:05 »

Hi,

I manage all tags in my collection with version ID3v2.3.
If I adapt a tag using a script, the version of the tag changes to ID3v2.4 (see Appendix).
Is that what you want and / or do I have the ability to do?

Here is my script:
function checkEmpty (value) {
     return! value || /^\s*$/.test(value);
}

var files = results.analysis.files;
for (var idx = 0; idx <files.length; ++ idx) {
     if (checkEmpty (files [idx] .tags.comment)) {
          log ("->" + Math.round (files [idx] .analysis.rating * 100));
          files [idx] .tags.comment = Math.round (files [idx] .analysis.rating * 100);
     }
}

Kind regards
icqtoni