Rockbox Ports are now being developed for various digital audio players!
as i understand it means that if you have a file with both v1 & v2than the player will choose the priortiy version that you selected
Hm, do you mean that e.g. would show a blank line rather than "Empty" if an ID3V1 tag didn't provide a value? If so, then yes, that is a bug. It seems the ID3V1 parser doesn't handle empty strings the way other parts of Rockbox expects...
By the way, that bug was introduced with the WPS tokenizer. The old code treated empty strings as "no value" in conditionals.
this is not what i meantwhat i meant is%?ia<%ia|%d1> still if no artist in id3v1 it will show blank line insted the directory
when you look at "show ID3 info" in the [artist] you will see jest blank lineunlike ID3v2 which will show you
i dont think the bug is in the WPS codei believe its something in the player that reads the ID3 infoand doesnt consider blank fields in ID3v1 as
Yes, I have noticed that myself. ID3v1 can not have null strings, only empty ones, so I get lots of empty comments in brackets in my wps. So either do a return (!string && Â !*string) Â ? string : null; Â Â instead of a return string;for every tag concerned or better yet solve it globally for all tags.
Page created in 0.044 seconds with 16 queries.