Recommended Posts

I got jealous of all these pretty Foobars, so I ditched my ugly but functional old config.

My (barely) modded version of Spex's Fb2k

Removed: datecheck, AS logo, Bottom Trackinfo_mod (didn't work for me/didn't need)

Changed: Playing color, covercheck string

Added: Quicksearch, Playlist tabs (for managing multiple playlists/searches), and Spectrum (only viewable in full screen, next to Top Trackinfo_mod)

myfb2kxm0.png

Also, another question for Spex.

I noticed that trackinfo can also have "buttons".

Would it be possible for the rating stars in the trackinfo to actually be... you know, used for rating :D?

yes it is. here is a sample of my code form my config a page or 2 back.

$if(%rating%,
$ifequal($num(%rating%,2),00,$imageabs(297,3,images\r0.png,),)
$ifequal($num(%rating%,2),01,$imageabs(297,3,images\r1.png,),)
$ifequal($num(%rating%,2),02,$imageabs(297,3,images\r2.png,),)
$ifequal($num(%rating%,2),03,$imageabs(297,3,images\r3.png,),)
$ifequal($num(%rating%,2),04,$imageabs(297,3,images\r4.png,),)
$ifequal($num(%rating%,2),05,$imageabs(297,3,images\r5.png,),)
,$imageabs(297,3,images\r0.png,))

$puts(rating,$if2(%rating%,0))
$button(297,3,0,0,13,13,,,Rate 1,)
$button(297,3,13,0,13,13,,,Rate 2,)
$button(297,3,26,0,13,13,,,Rate 3,)
$button(297,3,39,0,13,13,,,Rate 4,)
$button(297,3,52,0,13,13,,,Rate 5,)

//OR

//$puts(rating,$if2(%rating%,0))
//$button(297,3,0,0,13,13,,,TAG:SET:Rating:1,)
//$button(297,3,13,0,13,13,,,TAG:SET:Rating:2,)
//$button(297,3,26,0,13,13,,,TAG:SET:Rating:3,)
//$button(297,3,39,0,13,13,,,TAG:SET:Rating:4,)
//$button(297,3,52,0,13,13,,,TAG:SET:Rating:5,)

im using the custom info plugin. im not using the tag because foobar likes to delete other tags for some reason/

I have a problem with a progressbar in trackinfo mod.

I'm using this code for it.

$if(%isplaying%,
$puts(progress,$muldiv(%playback_time_seconds%,$sub(%_width%,24),%length_seconds%))
$drawrect(10,75,$sub(%_width%,20),8,brushcolor-null pencolor-120-120-120),)
$ifgreater($get(progress),0,$padding(9,75)$drawrect(3,2,$get(progress),4,brushcolor-90-90-90 pencolor-nulll),)

I can see it just fine but it won't update when I listen to music. What's wrong?

If you're using the very latest version of the component, you need to familiarise yourself with the new way of doing things. Specifically, you probably need to add this line in front of that code:

// PerSecond

Obviously, PerSecond is used when something needs to update every second. PerTrack is used for things that need to upgrade only once per track, including buttons. There's another one for images that only need to be drawn once, but i don't remember what it is (i haven't updated).

If you're using the very latest version of the component, you need to familiarise yourself with the new way of doing things. Specifically, you probably need to add this line in front of that code:

// PerSecond

Obviously, PerSecond is used when something needs to update every second. PerTrack is used for things that need to upgrade only once per track, including buttons. There's another one for images that only need to be drawn once, but i don't remember what it is (i haven't updated).

Thanks, that worked. :)

The tags are:

// lyrics & rating tagcheck

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if(%lyrics%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

$alignabs($sub(%_width%,14),1,10,18,center,middle)$font(wingdings 2,10,,$if(%rating%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

What do I have to switch %lyrics% with in order to chech for track replaygain info, that was the question :) %replaygain% doesn't work...

deltafoobarsk4.png

Took me a while to get rid of usual columns_ui style and get it how I wanted for funcionability :)

Mainly a mod of spex configuration, with some custom crap :p , I think it's just missing some buttons (currently controlled with the taskbar) and the right panel displays lyrics and album art if found, else it looks like on the screen ;)

What do I have to switch %lyrics% with in order to chech for track replaygain info, that was the question :) %replaygain% doesn't work...

Oh, i misunderstood. I thought you were asking the other way around.

There is no single tag for ReplayGain, so i'm not sure what exactly you're looking for. If you only use one type of ReplayGain, you can just substitute %lyrics% with the tag for that type. (The two types of ReplayGain are 'album' and 'track', if you weren't aware. The tag for album gain is %__replaygain_album_gain% and the tag for track gain is %__replaygain_track_gain%.) So for example if you want to just check for track gain (which is the only one i use), you would replace that lyrics line with:

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if(%__replaygain_track_gain%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

If you wanted to check for each of them (have separate tick marks, i mean), you would have to add an extra line of code. Something like:

$alignabs($sub(%_width%,36),1,10,18,center,middle)$font(wingdings 2,10,,$if(%__replaygain_album_gain%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if(%__replaygain_track_gain%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

(I'm just following the pattern there, i don't know if that '36' part is actually where you'd want to put it.)

Lastly you can do them both at the same time. In other words, the tick will show up if either or both types of ReplayGain is present. For that you'd do something like:

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if($or(%__replaygain_album_gain%,%__replaygain_track_gain%),$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

choose your destiny

Oh, i misunderstood. I thought you were asking the other way around.

There is no single tag for ReplayGain, so i'm not sure what exactly you're looking for. If you only use one type of ReplayGain, you can just substitute %lyrics% with the tag for that type. (The two types of ReplayGain are 'album' and 'track', if you weren't aware. The tag for album gain is %__replaygain_album_gain% and the tag for track gain is %__replaygain_track_gain%.) So for example if you want to just check for track gain (which is the only one i use), you would replace that lyrics line with:

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if(%__replaygain_track_gain%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

If you wanted to check for each of them (have separate tick marks, i mean), you would have to add an extra line of code. Something like:

$alignabs($sub(%_width%,36),1,10,18,center,middle)$font(wingdings 2,10,,$if(%__replaygain_album_gain%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if(%__replaygain_track_gain%,$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

(I'm just following the pattern there, i don't know if that '36' part is actually where you'd want to put it.)

Lastly you can do them both at the same time. In other words, the tick will show up if either or both types of ReplayGain is present. For that you'd do something like:

$alignabs($sub(%_width%,25),1,10,18,center,middle)$font(wingdings 2,10,,$if($or(%__replaygain_album_gain%,%__replaygain_track_gain%),$if(%isplaying%,100-130-150,150-150-150),$if(%isplaying%,170-200-220,220-220-220)))P

choose your destiny

Heh, thanx. %__replaygain_track_gain% is what I was looking for. :)

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Wow, imagine you dump hundreds of hours into completing things and unlocking stuff and you lose it all. Back in the day when cheats were built into games, you could at least unlock things again that way without spending hundreds of hours again. But those days are long gone for some reason as no one builds cheats into games anymore. So it's even more painful that studio that's on its 6th installment **** it up so badly.
    • Spotify finally removes the disco ball app icon in the latest update by Ivan Jenic Image: Spotify Spotify has just released an update that removes its now infamous disco ball icon. The update reverts the app icon to the familiar flat green logo after weeks of mixed reactions online. The icon arrived on May 13 as part of the company's 20th anniversary celebration and was always intended to be temporary, though Spotify only confirmed that after the backlash started. The disco ball took the internet by storm, as the reception was split. A vocal group of users called it ugly and disorienting, with some iOS users noting that the 3D glowing effect made the app look like it was stuck mid-update. On the other end, the icon picked up a following of its own. Its retro, three-dimensional look immediately stood out against the flat, minimalist aesthetic that has dominated app design for years. It even started a small movement, spawning what people started calling "discomorphism," a mashup of disco and skeuomorphism. Other brands started posting disco ball versions of their own logos, probably in an effort to ride the wave of memes that flooded the internet during late May. Spotify has had a turbulent relationship with its user base lately. Besides the disco ball icon, which certainly wasn't appreciated by everyone, the company has also received backlash for its willingness to include AI-generated music on its platform. On May 17, Spotify promised the old icon would return “in a few weeks.” And now it looks like that time has finally arrived. So, whether you liked the disco ball or it made you uncomfortable, it’s now gone for good. The next time you update the Spotify app on your phone, the old, flat-design icon will return.
  • Recent Achievements

    • One Year In
      slackerzz earned a badge
      One Year In
    • One Year In
      highriskpaym earned a badge
      One Year In
    • One Month Later
      highriskpaym earned a badge
      One Month Later
    • Week One Done
      highriskpaym earned a badge
      Week One Done
    • Week One Done
      FBSPL earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      520
    2. 2
      PsYcHoKiLLa
      197
    3. 3
      +Edouard
      157
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!