Favoriting a song |
This is NOT a tech support forum.
Tech support questions go to foobar2000 Tech Support forum instead.
See also: Hydrogenaudio Terms of Service.
![]() ![]() |
Favoriting a song |
Mar 9 2012, 02:43
Post
#1
|
|
|
Group: Members Posts: 8 Joined: 30-January 12 Member No.: 96798 |
Is there any way I can favorite a song in foobar?
|
|
|
|
Mar 14 2012, 06:05
Post
#2
|
|
|
Group: Members Posts: 54 Joined: 2-June 09 Member No.: 70339 |
I bet there's hundred of threads on the topic..
anyway, you can use the masstagger or the quicktagger components to create a couple of script in order to add/edit a tag field in your file (typically the RATING tag), and associate keyboard shortcuts or UI buttons to these actions. Then you could add a column to your playlist view to display the value stored in the tag. I use 6 stars and a negative value for tracks I want to skip (with foo_skip) so this is the culumns ui code for displaying 6 yellow-orange stars, changing in color depending on the rating. you'll need some good unicode fonts installed, like arial_unicode_ms. CODE $if(%rating%, $ifequal(%rating%,-1,$rgb(94,48,34,255,172,89)♠, $blend($rgb(255,100,0,255,255,205),$rgb(255,245,0,255,255,205),%rating%,6) $repeat(★,%rating%) $rgb(95,95,95,255,172,89) $repeat(☆,$sub(6,%rating%)) ),$repeat(☆,6)) these are the scripts I use in masstagger: CODE increase rating
$if(%rating%,$min(6,$add(%rating%,1)),3) decrease $if(%rating%,$max(0,$sub(%rating%,1)),2) to set a definite value in one field the command is pretty straightforward.. |
|
|
|
Mar 14 2012, 14:25
Post
#3
|
|
![]() Group: Members Posts: 3340 Joined: 27-January 05 From: England Member No.: 19379 |
if you don't want to tag your files, you might want to look at using foo_playcount which uses a database to store ratings info.
http://www.foobar2000.org/components/view/foo_playcount documentation: http://wiki.hydrogenaudio.org/index.php?ti...oo_playcount%29 |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 20th June 2013 - 04:52 |