5-step rating not read from .flac
#4
Here's how it is in TagLoaderTagLib.cpp:
Code:
else if (it->first == "RATING")
{
// Vorbis ratings are a mess because the standard forgot to mention anything about them.
// If you want to see how emotive the issue is and the varying standards, check here:
// http://forums.winamp.com/showthread.php?t=324512
// The most common standard in that thread seems to be a 0-100 scale for 1-5 stars.
// So, that's what we'll support for now.
int iUserrating = it->second.front().toInt();
if (iUserrating > 0 && iUserrating <= 100)
tag.SetUserrating((iUserrating / 10));

I think if you do some searching on the forum there's been threads about flac ratings.

scott s.
.
Reply


Messages In This Thread
RE: Rating tag not read from .flac - by scott967 - 2018-12-09, 01:56
Logout Mark Read Team Forum Stats Members Help
5-step rating not read from .flac0