Quote:
Originally Posted by gotjuice
Any particular reason foobar doesn't want to import ratings I've given certain songs? All I get is a question mark whenever I try to create a column to display them.
|
I just wrote my own column after reading a quick guide.
If you don't have foo_playcount (you might, so check!), then get it from
here and move the dll file to foobar2000/composites folder.
You can now rate your files by right-clicking them and choosing "playback statistics" and then "ratings".
To make a column, you can write one yourself. Right-click the columns, choose "edit this column", then make a new one and call it ratings. Click the scripts tab and then in the script field under the display tab, add something like this :
Code:
$if(%rating%,$repeat(★,%rating%),☆)
or, if you'd like some colour :
Code:
$rgb(250,173,69)$if(%rating%,$repeat(★,%rating%),☆)
This should give you a column where ratings are represented by stars. It's a quick way to do it although I'm sure there are more refined ways to do it.