Help - Search - Members - Calendar
Full Version: Foobar Gallery
Hydrogenaudio Forums > Hosted Forums > foobar2000 > 3rd Party Plugins - (fb2k)
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56
Aesir
QUOTE(alphaex32 @ Jun 20 2005, 05:23 AM)
Just wondering, what font are you using for columnsUI?
*



Lucida Sans Unicode, 7-point regular
ryanir
QUOTE(Aesir @ Jun 20 2005, 06:22 AM)
Been quite awhile since I posted my Foobar. Finally got the custom buttons finished (based on Crystal SVG).

user posted image

Navigator Suite (custom theme), projectM, etc......
*



Wow, I like this. Could you upload the .fcs file?
trefaes
user posted image
Aesir
QUOTE(ryanir @ Jun 21 2005, 12:29 AM)
Wow, I like this. Could you upload the .fcs file?
*



Sure, no prob.

The FCS
Fiend Angelical
QUOTE(trefaes @ Jun 21 2005, 07:05 AM)
user posted image
*


That's nice. How did you do it? Can you upload any files to help me do the same? Thanks.
TheExile
QUOTE(neotool @ Jun 20 2005, 11:07 AM)
My new one. happy.gif
*


I really enjoy configurations like this, my kind of style. I kinda stole mine from someone else in this topic though, hope they forgive me.

user posted image
kuru
my foobar:
http://img162.echo.cx/my.php?image=myfoo6tn.png

as you may see, i like blue, colors and music...
trefaes
QUOTE(Fiend Angelical @ Jun 21 2005, 11:15 PM)
QUOTE(trefaes @ Jun 21 2005, 07:05 AM)
user posted image
*


That's nice. How did you do it? Can you upload any files to help me do the same? Thanks.
*



Thanks smile.gif
Here's my fcs (commented, and pretty simple)
My trackinfo (probably more complicated than it needs to be... set your line spacing to around -15, depending on your font size, in order to have all the info on one line. You'll also need to play with the two top variables to stop the text overlapping on your config)
And my status bar code, involving even more dodgy trickery which you'll need to play with to get it looking right tongue.gif
Hope this helps smile.gif
tool++
I'm back, this time with a few changes, a nicer colour scheme, and some bugfixing etc.

user posted image
http://toolplusplus.com/stuffs/foobar2000_toolehv2.1_1.jpg
This is it normally.

user posted image
http://toolplusplus.com/stuffs/foobar2000_toolehv2.1_2.jpg
This is it when you mouseover the sidebar (which you need to create yourself =P ).

Download link? Download toolehv2.1

Track Info box code?

CODE

//%title%$char(10)$char(10)$char(10)
//$if(%_trackinfo_notrack%,No track,%artist%$char(10)Album: %album%)
//$char(10)$char(10)
//%__bitrate%kbps // %__samplerate%Hz
//$char(10)$char(10)$char(10)$char(10)
//Mode: %_trackinfo_mode%


//Track-info code by Neil K (not all original)

//COLOR CODES
//blue color that is used a LOT
$puts(color1,5454A9)

//grey color that is also used a LOT
$puts(color2,$rgb(150,150,150))

//green color for word 'Original' for tracks with %origartist%, %origalbum% or %origyear%
$puts(orig_color,$rgb(116,175,170))

//light blue color for %origartist% and %origalbum%
$puts(orig_color2,$rgb(155,180,197))

//scrolling path color
$puts(scroll_color,$rgb(160,160,160))

$if(%_trackinfo_nowplaying%,

//color for 'SONG INFO' if in now-playing mode
$puts(transition_color,$rgb(255,255,255)),
//color for 'SONG INFO' if in follow-cursor mode
$puts(transition_color,$rgb(170,0,0)))

//// END OF COLOR CODES

$if(%_trackinfo_notrack%,No track playing,

//'SONG INFO' transitions
$char(1)C$transition(>>>>>>,333333,888888) $transition(S O N G,888888,$get(transition_color)) $transition(X I N F O,$get(transition_color),888888) $transition(<<<<<<,888888,333333)
$char(10)
$if(%_isplaying%,
$ifgreater(%_time_elapsed_seconds%,240,'[scrobblered]',
$ifgreater(%_time_elapsed_seconds%,$div(%_time_total_seconds%,2),'[scrobblered]',)))
//ARTIST, TITLE, ALBUM info
$char(10)Artist:$char(10)$char(1)C$rgb(255,255,255)$caps2(%artist%)$char(10)$char(10)
Title:$char(10)$char(1)C$get(color2)$if(%_isplaying%,$if(%_ispaused%,-,+),)$rgb(255,255,255)$caps2($replace(%title%,'(',ffffff'(',')',')','[',ffffff'[',']',']'))$char(10)$char(10)
$if(%album%,Album:$char(10)$char(1)C$rgb(255,255,255)$caps2(%album%) $get(color2)[ '['%date%']']$char(10),)

//displays info if there is an %origartist%, %origalbum% or %origyear% tag
$if($or(%origartist%,%origalbum%,%origyear%),
$get(orig_color)Original:$char(10)
$get(orig_color2)[%origartist%$char(10)]
$get(orig_color2)$if2(%origalbum%,)
$get(color2)[ '['%origyear%']']$char(10),)

// PROGRESS BAR
$if(%_trackinfo_nowplaying%,
$char(10)
$char(1)C$puts(len,$muldiv(%_time_elapsed_seconds%,43,%_time_total_seconds%))
$transition($repeat(█,$get(len)),4C4C99,4C4C99)
$repeat(█,$sub(43,$get(len)))
$char(10),)
$char(1)R $get(color1)[%_time_elapsed% / ][%_length%$char(10)
//TIME
$get(color1)$if($stricmp(%__codec%,Windows Media Audio V7/V8),WMA,%__codec%) @ %__bitrate% kb/s / $puts(fsize,$div(%_filesize%,1048576).$num($div($mul($mod(%_filesize%,1048576),100),1048576),2) $get(anno)MB)
$get(color1)$get(fsize)$char(10)
]

//SCROLLING PATH
$if(%_trackinfo_nowplaying%,
$char(10)
$get(scroll_color)$puts(padding,$char(160)$char(160)•$char(160)$char(160))
$puts(size,34)
$puts(title,$replace(%_path%, ,$char(160)))

$ifgreater($len2($get(title)),$get(size),
// scroll text
$puts(title,$get(title)$get(padding))
$puts(start,$add(1,$mod( %_time_elapsed_seconds%,$len($get(title)))))
$puts(display,
$cut(
$substr($get(title)$get(title),
$get(start),
$add(
$get(start),
$get(size)
)
)
,$add($get(size),1))
)
$get(display)$ifgreater($len2($get(display)),$get(size),,$char(160)),
// normal display
$get(title)
),))


Now go enjoy self.

moderation: code was exceedingly wide. converted to [ codebox ]
synth7
QUOTE(trefaes @ Jun 22 2005, 03:07 AM)
QUOTE(Fiend Angelical @ Jun 21 2005, 11:15 PM)
QUOTE(trefaes @ Jun 21 2005, 07:05 AM)
user posted image
*


That's nice. How did you do it? Can you upload any files to help me do the same? Thanks.
*



Thanks smile.gif
Here's my fcs (commented, and pretty simple)
My trackinfo (probably more complicated than it needs to be... set your line spacing to around -15, depending on your font size, in order to have all the info on one line. You'll also need to play with the two top variables to stop the text overlapping on your config)
And my status bar code, involving even more dodgy trickery which you'll need to play with to get it looking right tongue.gif
Hope this helps smile.gif
*




What font are you using?
trefaes
Frutiger Linotype, it's a commerical font but most people seem to have it smile.gif
synth7
Well I don't smile.gif I know you sending it to me is probably against forum rules, so I'll have to track it down somehow.
tool++
Its released with a shedload of visual styles.

What sort of cheapass tries to sell a damn font, anyway tongue.gif
syrek
I've been stealing code and ideas and came up with this, I try to match it with my customized MirandaIm. Don't they look cute toghether tongue.gif

user posted image

Just have one request, I don't like my info panel, can someone come up with a clean design for it, or a suggestion to modify a excisting code unsure.gif
Storm
Weeell, try to create one for yourself and you'll understand why they want to charge you for all of those beautiful fonts, tool++. It's not the easiest thing in the world.
Richman789
QUOTE(syrek @ Jun 22 2005, 05:41 PM)
user posted image


Damn that is nice anychance of the .fcs file.

Rich
synth7
QUOTE(Richman789 @ Jun 22 2005, 03:52 PM)
QUOTE(syrek @ Jun 22 2005, 05:41 PM)
user posted image


Damn that is nice anychance of the .fcs file.

Rich
*



Scroll up a bit, trefaes posted it.
synth7
QUOTE(tool++ @ Jun 22 2005, 12:34 PM)
Its released with a shedload of visual styles.

What sort of cheapass tries to sell a damn font, anyway tongue.gif
*



Thanks, I found it in a style I had lying around. smile.gif
sonny8988
Heres my foobar
screenshot

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead. try PNG for smaller filesize.
khoma
QUOTE(sonny8988 @ Jun 23 2005, 12:38 AM)
Heres my foobar
screenshot

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead. try PNG for smaller filesize.
*



what's the visual style?
syrek
QUOTE(synth7 @ Jun 23 2005, 02:12 AM)
QUOTE(Richman789 @ Jun 22 2005, 03:52 PM)
QUOTE(syrek @ Jun 22 2005, 05:41 PM)


Damn that is nice anychance of the .fcs file.

Rich
*



Scroll up a bit, trefaes posted it.
*



was gonne say that biggrin.gif

But I got it from http://foobar.nub4life.net/columns/pafiled...n=category&id=5
trefaes
QUOTE(syrek @ Jun 23 2005, 10:23 AM)


You did...? Where? I'm pretty sure I made that... and I don't remember uploading it there tongue.gif
mobyduck
QUOTE(synth7 @ Jun 22 2005, 06:49 AM)
Well I don't smile.gif I know you sending it to me is probably against forum rules, so I'll have to track it down somehow.
*

Also comes with MS Reader.

HTH.

Alessandro
syrek
QUOTE(trefaes @ Jun 23 2005, 11:43 AM)
QUOTE(syrek @ Jun 23 2005, 10:23 AM)


You did...? Where? I'm pretty sure I made that... and I don't remember uploading it there tongue.gif
*



not sure got 10 .fcs on my desktop when searching for a good theme, including yours unsure.gif

I say it is yours to end the fuzz biggrin.gif
synth7
http://www.synth7.net/foobar.png

I've been playing around with trefaes' FCS, got some cool results, especially tonight with my Stream compatibility.
Ralesmar
well its not as fancy as most of what i've seen on here but...
screenshot
and btw its not on a mac.

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead. try PNG for smaller filesize.
crono cloud
my new what i call "compact" version

user posted image
enjoilax
QUOTE(Ralesmar @ Jun 23 2005, 08:46 PM)
well its not as fancy as most of what i've seen on here but...
screenshot
and btw its not on a mac.

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead. try PNG for smaller filesize.
*


Don't worry we know. laugh.gif

edit - http://img239.echo.cx/img239/4228/foo2oh.png
fakeplastictrees
QUOTE(Lance Uppercut @ Jun 19 2005, 10:04 PM)
QUOTE(theWANDERER @ Jun 19 2005, 01:51 AM)
screenshot

here's mine biggrin.gif


moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead. try PNG for smaller filesize.
*



This style is excellent. I am going to steal some of your ideas for my next config!

user posted image
*



fcs and trackinfo string please?

rapsodie
Here's my latest.

I still think it could use a little bit of spicing up, though. Anybody have any good buttons that they could suggest to me for this config, and wouldn't mind explaning how to install them? I've tried to use other buttons before, but it didn't work. :-/
arT2
hi all,
here's my very very simple foobar.

after watching your screens, i'm wondering where i can download some of those components. specially the "show album image/info" stuff *browsingthelinksonthisforum ;)*

have a nice evening,
arT2
chaosblade
Those would be ColumnsUI (the alternative user interface plugin that almost everyone uses), and its add-in panels: Albumart, trackinfo, etc ..
Bachi-Bouzouk
you can look here for several links:
http://eolindel.free.fr/foobar/

especially the sidebar page wink.gif
arT2
thanks a lot for the fast info. i've found ColumnsUI 1 minute ago smile.gif


edit: my NEW very simple foobar wink.gif
12zmcnvow1277
Here's mine:

screenshot

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead.
lukeman89
heres my first one...im still working on my own buttons tongue.gif

user posted image
Strictly4me
QUOTE(fakeplastictrees @ Jun 24 2005, 10:15 AM)
QUOTE(Lance Uppercut @ Jun 19 2005, 10:04 PM)

This style is excellent.  I am going to steal some of your ideas for my next config!
user posted image

fcs and trackinfo string please?

Yeah, please share it! tongue.gif

((((( Strictly4me )))))
MoMan
QUOTE(12zmcnvow1277 @ Jun 24 2005, 09:04 PM)
Here's mine:

screenshot

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead.
*

I like your look. The colors are very easy on the eyes. The middle panel is a visualization? If I am understanding correctly there is no add in to do that so you have to position the visualization in the Foobar screen?
synth7
What's the best way for determining if a track is track 01? Like, what kind of $puts() would I need to be able to use a TAGZ function like $if(%_trackone%,blah,blah2)?
Anas
QUOTE(synth7 @ Jun 25 2005, 04:51 PM)
What's the best way for determining if a track is track 01? Like, what kind of $puts() would I need to be able to use a TAGZ function like $if(%_trackone%,blah,blah2)?
*



If you want to check if it's the first track in the album you could use:
CODE
$if($strcmp($num(%tracknumber%,2),01),TRUE,FALSE)

Lance Uppercut
QUOTE(Strictly4me @ Jun 25 2005, 03:57 AM)
QUOTE(fakeplastictrees @ Jun 24 2005, 10:15 AM)
QUOTE(Lance Uppercut @ Jun 19 2005, 10:04 PM)

This style is excellent.  I am going to steal some of your ideas for my next config!
user posted image

fcs and trackinfo string please?

Yeah, please share it! tongue.gif

((((( Strictly4me )))))
*



The trackinfo is a bit messy and has some custom string lengths to fit in the provided space. The font is Franklin Gothic Medium 7pt. I can't post my fcs, but I can email it to you if you want.

CODE

$puts(dim,aaaaaa)
$puts(label,828282)
$puts(red,0000b9)
$puts(sep,
$char(1)C$transition(-------------------------------,1d1d1b,0000d7)
$transition(-------------------------------,0000d7,1d1d1b)
$char(10))

//::::::::::::
//START::::
//::::::::::::

$if(%_trackinfo_notrack%,$char(1)C- No track Selected -,
$if(%_length%,

$char(1)C$if2(%title%,$ifgreater($len(%title%),35,$abbr(%title%),%title%),%_filename%)
$char(10)
$char(1)C$get(dim)[$ifgreater($len($if2(%album artist%,%artist%)),30,$abbr($if2(%album artist%,%artist%)),$if2(%album artist%,%artist%))]
$char(10)

$get(sep)

ALBUM: $get(label)$ifgreater($len(%album%),29,$abbr(%album%),%album%)
$char(10)

GENRE: $get(label)[%genre%]
$char(10)

CODEC: $get(label)[%__codec%][ @ %__bitrate% kb/s][ '['%__lame_version%']']
$if($strcmp(%__codec%,FLAC,),' ('$muldiv(%__bitrate%,100,1411)'%)')
$char(10)

TRACK GAIN:
$get(label)' '[%__replaygain_track_gain%]
$char(10)

//:::::::::::::::::::::::
//PROGRESS BAR::::
//:::::::::::::::::::::::

$get(sep)
$char(1)C
$get(dim)[%_time_elapsed%  ]
$if(%_isplaying%,$get(label)::
$progress(%_time_elapsed_seconds%,%_time_total_seconds%,
42,$get(red)■,464646:)$get(label)::
 $get(dim)- %_time_remaining%,
$get(red)::  $get(dim)%_length%  $get(red)::)
$char(10)

,$char(10)$char(10)$char(10)$char(10)$char(10)$char(10)$char(1)C$get(dim)... stream ...)

)
Strictly4me
An other question: Is there a way to make a background like this for album-playlists? (made with photoshop)

user posted image

((((( Strictly4me )))))
synth7
QUOTE(Strictly4me @ Jun 25 2005, 09:18 PM)
An other question: Is there a way to make a background like this for album-playlists? (made with photoshop)

user posted image

((((( Strictly4me )))))
*



Probably not without foo_looks or something similar.
12zmcnvow1277
QUOTE(MoMan @ Jun 25 2005, 10:48 PM)
QUOTE(12zmcnvow1277 @ Jun 24 2005, 09:04 PM)
Here's mine:

screenshot

moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead.
*

I like your look. The colors are very easy on the eyes. The middle panel is a visualization? If I am understanding correctly there is no add in to do that so you have to position the visualization in the Foobar screen?
*





The object in the middle is a visualiztion, the projectM one which displays a nice visualization. http://www.hydrogenaudio.org/forums/index....showtopic=34584

Glad you like it
Hartmann
I've been lurking around a week or two on the forums and learned/used a lot from what you guys made, thanks! smile.gif

Here's my foobar: Screenshot
synth7
synth7's remix of trefaes' fcs

user posted image
trefaes
QUOTE(synth7 @ Jun 26 2005, 05:53 PM)
synth7's remix of trefaes' fcs

That's really nice, any chance you could share the FCS?
synth7
QUOTE(trefaes @ Jun 26 2005, 02:02 PM)
QUOTE(synth7 @ Jun 26 2005, 05:53 PM)
synth7's remix of trefaes' fcs

That's really nice, any chance you could share the FCS?
*



Not a problem
Anas
Changed some things:
-Added Playcount Plugin
-Made Lyrics Column*

user posted image
Screenshot

* The lyrics column ist the double with seperator line between rating and length. If lyrics are available the bar is red, if not it's dark-grey.

I'm still searching for some buttons to fit my style, but I can't find any good ones. sad.gif

pRzemo
QUOTE(Anas @ Jun 26 2005, 09:43 PM)
Changed some things:
-Added Playcount Plugin
-Made Lyrics Column*

user posted image
Screenshot

* The lyrics column ist the double with seperator line between rating and length. If lyrics are available the bar is red, if not it's dark-grey.

I'm still searching for some buttons to fit my style, but I can't find any good ones.  sad.gif
*



I have 1 question:
user posted image
What is this? smile.gif

EDIT:
And how you manage to get those 3 panels in 1 row (album art | album list | lyrics show) ?
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.