Help - Search - Members - Calendar
Full Version: Rating Problem
Hydrogenaudio Forums > Hosted Forums > foobar2000 > Support - (fb2k)
sylla
Hello, first off I apologize if I have posted this in the wrong place, this is my first post so I hope you don't mind too much =)

My problem is that I can't rate my mp3 files. I have a trackinfo_mod panel with code for rating tracks from 1-5. It works perfectly fine with .FLAC and .m4a. but with mp3 nothing happens when I push the buttons, or if the track I'm trying on already is rated, then the rating disappears!

I don't think the problem is in the code, I think it is some setting in the "preferences" but I'll post the code anyway

QUOTE

// rating images
$ifequal(%rating%,1,
$button($sub($div(%_width%,2),30),$sub(%_height%,30),0,0,12,12,/images\brumal-winter\star-on.png,,TAG:SET:Rating:,),
$button($sub($div(%_width%,2),30),$sub(%_height%,30),0,0,12,12,
$ifgreater(%rating%,0,/images\brumal-winter\star-on.png,/images\brumal-winter\star-off.png)
,,TAG:SET:Rating:1,)
)
$ifequal(%rating%,2,
$button($sub($div(%_width%,2),18),$sub(%_height%,30),0,0,12,12,/images\brumal-winter\star-on.png,,TAG:SET:Rating:,),
$button($sub($div(%_width%,2),18),$sub(%_height%,30),0,0,12,12,
$ifgreater(%rating%,1,/images\brumal-winter\star-on.png,/images\brumal-winter\star-off.png)
,,TAG:SET:Rating:2,)
)
$ifequal(%rating%,3,
$button($sub($div(%_width%,2),6),$sub(%_height%,30),0,0,12,12,/images\brumal-winter\star-on.png,,TAG:SET:Rating:,),
$button($sub($div(%_width%,2),6),$sub(%_height%,30),0,0,12,12,
$ifgreater(%rating%,2,/images\brumal-winter\star-on.png,/images\brumal-winter\star-off.png)
,,TAG:SET:Rating:3,)
)
$ifequal(%rating%,4,
$button($add($div(%_width%,2),6),$sub(%_height%,30),0,0,12,12,/images\brumal-winter\star-on.png,,TAG:SET:Rating:,),
$button($add($div(%_width%,2),6),$sub(%_height%,30),0,0,12,12,
$ifgreater(%rating%,3,/images\brumal-winter\star-on.png,/images\brumal-winter\star-off.png)
,,TAG:SET:Rating:4,)
)
$ifequal(%rating%,5,
$button($add($div(%_width%,2),18),$sub(%_height%,30),0,0,12,12,/images\brumal-winter\star-on.png,,TAG:SET:Rating:,),
$button($add($div(%_width%,2),18),$sub(%_height%,30),0,0,12,12,
$ifgreater(%rating%,4,/images\brumal-winter\star-on.png,/images\brumal-winter\star-off.png)
,,TAG:SET:Rating:5,)
)

Frank Bicking
Sounds like you have enabled "ID3v2 writer compatibility mode" at Preferences, Advanced.

This mode is limited to a certain number of fields, RATING is not among them.
sylla
QUOTE(Frank Bicking @ Mar 20 2007, 18:16) *

Sounds like you have enabled "ID3v2 writer compatibility mode" at Preferences, Advanced.

This mode is limited to a certain number of fields, RATING is not among them.



Yeah you were right! thanks!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.