Recommended Posts

According to this thread, http://www.hydrogenaudio.org/forums/index....showtopic=31530

String for play_count plugin:

First Tag: LAST_PLAYED Format: %Y-%M-%D $H:$M:$S

Second Tag: (leave this empty)

585873864[/snapback]

hmm, Seem to be getting a little bit closer each time. :) I didn't need the $H:$M:$S in the format.

Problem is that I played a lot of my tracks yesterday but as of this morning when I read your post and changed it they show up as today, I will give it a couple of days and see what happens with it.

585874977[/snapback]

can't get this to work :(, perhaps someone can suggest something I missed.

heres part of the globals config which has last_played in it.

// DATE & TIME CALCULATIONS
$if(%last_played%,
// calculate lastplayed-days since millenium
$puts(lastplayed_d-2000,$add(
$mul($substr(%__last_played%,3,4),365),
$select($substr(%__last_played%,6,7),0,31,59,90,120,151,181,212,243,273,304,334),
$substr(%__last_played%,9,10)))
// calculate days since last play
$puts(days_since_play,$max(0,$sub($get(system_d-2000),$get(lastplayed_d-2000))))
)

(If I change the first last_played then the last played column starts spouting gibberish) and heres the config for the last played column

// DO NOT change anything here !
// for configuration, see the "Globals"-tab !
// ============================================

// last played
$if(%__last_played%,
%_standard_color%
$ifgreater(%_days_since_play%,30,$left(%__last_played%,10),
$ifgreater(%_days_since_play%,1,%_days_since_play%days ago,
$ifgreater(%_days_since_play%,0,yesterday,
%_special_color%' - today - '
)))
$char(9)%_standard_color_low%$substr(%__last_played%,12,16)
)

and finally this is what I have in the playcount configuration.

First tag: last_played Format: %Y-%M-%D $H:$M:$S
second tag is blank

anyone have any ideas what I'm doing wrong? :)

In the bottom right, I need to figure out how o change that background and selection color.

For the spectrum analyzer, how can I have it not have a sunken border style?

Under the artist column, I've seen some people have it setup so it says the artist on track 1 of an albums line, then the rest of the album has a blank under artist. How could I get it so it'd be like that, along with the album name and bitrate in the same column?

Thanks.

post-39393-1115486242_thumb.jpg

For the visualization border, go to foobar's options, and under Visualization -> simple spectrum -> Border Style..

as for the album detection, its alot less clever then you would think - its a string check for tracknumber 1, if so, show artist, otherwise, dont display anything. something like this (under the artist column code):

$if($strcmp(%tracknumber%,1),%artist% %other_tags_that_you_would_like%,<empty string here so artist wont show>)

For the visualization border, go to foobar's options, and under Visualization -> simple spectrum -> Border Style..

as for the album detection, its alot less clever then you would think - its a string check for tracknumber 1, if so, show artist, otherwise, dont display anything. something like this (under the artist column code):

$if($strcmp(%tracknumber%,1),%artist% %other_tags_that_you_would_like%,<empty string here so artist wont show>)

585886520[/snapback]

I don't have the simple spectrum subtree. =/

I'll try out that string and play around with it, thanks.

Hmm, the playlist stuff doesn't seem to be working, here's my config:

// LordAlu's Playlist Config

// -------------------------------------

// Colour Settings

// -----------------------

$puts(color1,000000|000000)

$puts(color2,FFFFFF|FFFFFF)

$puts(color3,DFDFDF|DFDFDF)

$puts(color4,ffffff|DFDFDF)

$puts(color5,ffffff|ffffff)

$puts(color6,808080|808080)

$puts(color7,400080|400080)

// Playlist Numbering

// ----------------------------

$get(color3)$repeat(0,$sub(4,$len2(%_playlist_number%)))

$if(%_isplaying%,$get(color7),$get(color6))%_playlist_number%

$if($strcmp($num(%tracknumber%,1),1),$get(color3)'├'$get(color2)'─',$get(color3)'│ ')

// Show Artist on 1st Track

// --------------------------------------

$if($strcmp($num(%tracknumber%,1),1),

$get(color2)'['

$if(%artist%,$get(color1)$caps(%artist%)

$get(color2)']',$get(color1)'No Artist Defined'$get(color2)']'))

// Show Album on 2nd Track

// ------------------------------------------

$if($strcmp($num(%tracknumber%,1),2),

$if(%album%,$get(color6) $caps(%album%)),)

// Show Year and Genre on 3rd Track

// --------------------------------------------------------

$if($strcmp($num(%tracknumber%,1),3),

$if(%date%,$if(%genre%,$get(color6)' ('%date%') - '%genre%,$get(color6)' ('%date%')'),),)

// Information Formatting

// ----------------------------------

$if($strcmp($num(%tracknumber%,1),1),$get(color2)$repeat(─,200),$get(color3))

$repeat( ,200)

$tab(5)

// Show Tracknumber

// -------------------------------

$if($strcmp($num(%tracknumber%,1),1),$get(color3)'┤',$get(color3)'│')

$if(%tracknumber%,$if(%_isplaying%,$get(color7),$get(color6))$num(%tracknumber%,2),)

$if($not(%tracknumber%),$repeat(*,2),)

$if($strcmp($num(%tracknumber%,1),1),$get(color3)'├'$get(color2)'─',$get(color3)'│ ')

// Show Title

// ----------------

$if(%_isplaying%,$get(color7),$get(color1))

$if(%title%,$caps(%title%),$caps(%_filename_ext%))

$if($strcmp($num(%tracknumber%,1),1),$get(color2)$repeat(─,200),$get(color3))

//isplaying 2

$if(%_isplaying%,$get(color2),)

$if(%_isplaying%,$tab(9)$get(color7)'♪♫ ',$tab(9))

// Show Track Length

// -------------------------------

$if($strcmp($num(%tracknumber%,1),1),$get(color3)'┤',$get(color3)'│')

$if(%_isplaying%,$get(color7),$get(color6))

$if(%_length%,$pad_right(%_length%,5),)

Edited by Raum

The vertical lines are just 1 pixel columns with a black background.

For the horizontal lines, put this in the "colour" tab for every column that has text in it.

$rgb(0,0,0)|

$rgb(255,255,255)|

$rgb(255,255,255)|

$rgb(75,100,125)|

$rgb(75,100,125)|

|

$if($stricmp(%tracknumber%,'1'),$rgb(0,0,0),$rgb(255,255,255))|

The single "|" in the second last line is needed.

The last line draws the horizontal lines.

Awsome, thanks for the tip. One last question.

//[%artist%]

$if($stricmp(%tracknumber%,'1'), %artist%)

$if($stricmp(%tracknumber%,'2'), %album%)

$if($stricmp(%tracknumber%,'2'), - %date%)

That's my artist column. On track two, it'll say, for example:

Jar OF Flies - 1994

I'm trying to make it so Jar OF Flies (Album name) is in white, and 1994 (date) is in black. How might I do this?

Nice & Clean. I wonder whats with you and dark colors though,

its like your black is deep-black-more-then-the-darkest-night, and your white is dark-grey ;p

585887164[/snapback]

Maybe your moniter is too dark or mine is too bright? I know I keep the one on the left very bright.

I downloaded a "theme", but it won't show the artists from songs without tracknumbers (single MP3s)

This is the code for the column:

$if($strcmp($num(%tracknumber%,2),01),

$if(%various%,%funder%,

$if(%soundtrack%,

%album% 8CDCF7soundtrack,

%artist%)

))

$if($strcmp($num(%tracknumber%,2),02),

$if(%various%,

8CDCF7%album%)

)

I'm kinda a newbie on coding so i wouldn't what to edit :p.

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

    • No registered users viewing this page.
  • Posts

    • Still 3x what it should cost. So, it seems the trick is to increase price by 6x so that a reduction in price back to 4x looks like a steal. "You savvy shoppers win again!" I'm glad I'm not in a desperate spot to actually even need this overpriced crap. Hopefully, it comes back down by the time for when (or if) I ever do.
    • Although AI is great and has it's use cases they likely have massively overhyped it and it has not delivered as per their expectations. I fully expect them to start saying the same things again when it does get to a certain level of intelligence!
    • Microsoft wants to end printer driver headaches with Windows Ready Print by Usama Jawad A few days ago, Microsoft released Windows 11 Experimental build 26300.8553, bringing a ton of enhancements such as Start menu customization, search improvements, Taskbar polish, and other minor UI tweaks. Another relatively major enhancement snuck deep within the change log was related to upgrades to the Windows printing experience. Now, Microsoft has shared more details about these benefits. For starters, Microsoft has renamed its Modern Print Platform to Windows Ready Print. The company believes that this name highlights its shift in strategy, which now focuses on modernizing, securing, and streamlining the printing experience for Windows devices. Some of the upgrades present in Windows Ready Print have already been seeded to customers and partners. This includes ending support for third-party printer drivers via Windows Update and transitioning towards the Internet Printing Protocol (IPP) and the native Windows IPP printer driver. In line with these changes, new printer installations will default to Windows Ready Print on eligible devices starting from July 2026. However, Microsoft recognizes that not all environments will be able to migrate to this platform immediately, so it will allow users to choose between installing the printer via Windows Ready Print or the traditional OEM process. Users will be able to toggle this configuration through Settings > Bluetooth & Devices > Printers & Scanners > Printer preferences. This control applies only to new printer installations, and its functionality can also be modified via Group Policy as follows: Launch Group Policy Editor Navigate to Local Computer Policy -> Administrative Templates -> Printers Find and select 'Configure Windows Ready Print driver ranking' -> double click to open it Select 'Enabled' (if you wish to enable Windows Ready Print driver selection) or 'Disabled' (if you wish to explicitly disable Windows Ready Print driver selection). Select Apply Select OK Similarly, if you set up Windows protected print mode through the same setting in Windows 11, it will also default to using Windows Ready Print exclusively. Microsoft hopes that these improvements will help eradicate dependency on OEM-specific driver installation processes and simplify printer installations. We'll likely find out more about other tangible benefits in the coming months.
    • Hey what's about the proton vpn firefox extension ? It's not working today
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      513
    2. 2
      PsYcHoKiLLa
      230
    3. 3
      Edouard
      138
    4. 4
      ATLien_0
      87
    5. 5
      Steven P.
      81
  • Tell a friend

    Love Neowin? Tell a friend!