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
kl33per
user posted image
Mystiq
QUOTE(metal_termite @ May 13 2005, 06:09 AM)
QUOTE(Superunknown @ May 11 2005, 02:32 PM)
QUOTE(Superunknown @ May 9 2005, 12:05 PM)
QUOTE(Superunknown @ May 8 2005, 04:50 PM)
QUOTE(metal_termite @ Mar 13 2005, 12:09 AM)
user posted image

Several people having been PMing me for my setup and plugins used, so I figured I'd just make it public. Here is the FCS file for import.

Plugins: Database tab is the Album List Panel Plugin. Playlists tab is the Playlist Tree Plugin*. Track Info tab is the Track Info Panel Plugin. And of course the Tabbed Panel Plugin, Columns UI Plugin, and Album Art Panel Plugin. All these plugins can be found here.
*


could anyone send me the FCS ? it is not online anymore and I really love this.
*

no one ? odd as metal_termite said a lot of people asked him for his FCS... huh.gif
*


sad.gif
*



Sorry about that. I uploaded it to following address--should work now. http://ca.geocities.com/functional_defect@...com/compact.zip
*


Whats that windows theme you are using in that picture? smile.gif
Superunknown
don't know... it's not my screenshot... unsure.gif
viveztigrou
my new foobar (1024)
stroke
QUOTE(Mystiq @ May 13 2005, 02:04 PM)

Whats that windows theme you are using in that picture? smile.gif
*



the question was already answerd in this thread. biggrin.gif But FYI it's OpusOS.
Sandman2012
QUOTE(stroke @ May 13 2005, 07:06 AM)
QUOTE(Mystiq @ May 13 2005, 02:04 PM)

Whats that windows theme you are using in that picture? smile.gif
*



the question was already answerd in this thread. biggrin.gif But FYI it's OpusOS.
*


Get it here.
Sebastian Mares
Here is my modest configuration. Tries to mimic iTunes a bit.
amonrei
user posted image
marcomk
QUOTE(Mystiq @ May 13 2005, 01:04 PM)
Whats that windows theme you are using in that picture? smile.gif


Opus OS by bOse

Edit: It was already answered twice... I think I was very sleepy
lwiczek
synth7 & necropimp - could you post yours Track info codes?
TIA
synth7
I customized the "plisk" columns_UI string a bit...it had no showing of genre tags, etc...

user posted image

lwiczek:

CODE

// Global Config Part //

// Shows Song Info in track info panel
// 0 = No, 1 = Yes
$puts(show_songinfo,1)

// Show various informations in Song Info
// 0 = No, 1 = Yes
$puts(title,1)
$puts(artist,1)
$puts(mixartist,0)
$puts(band,0)
$puts(album,1)
$puts(discinfo,$trim($if(%disc%,'(''Disc '%disc%[' '''%discname%'']')',)))
$puts(tracknumber,0)
$puts(genre,1)
$puts(bpm,0)
$puts(date,1)
$puts(copyright,0)


// Shows Additional Info in track info panel
// 0 = No, 1 = Yes
$puts(show_additionalinfo,1)

// Shows Technical Info in track info panel
// 0 = No, 1 = Yes
$puts(show_techinfo,1)

// Show various informations in Tech Info
// 0 = No, 1 = Yes
$puts(codec,1)
$puts(bitrate,1)
$puts(samplerate,1)
$puts(channels,1)
$puts(time_elapsed_total,1)
$puts(trackgain,0)
$puts(albumgain,1)
$puts(rating,1)
$puts(play_counter,0)
$puts(play_date,0)
$puts(encodedby,0)
$puts(encodersettings,0)
$puts(filesize,1)
// hidden, because not really needed
$puts(filename_ext,0)
$puts(mediatype,0)
$puts(size,1)
$puts(songlen,0)
$puts(time,0)



// Spacer
$puts(spacer,ffffffּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּּ$char(10))
$puts(spacer2,ּ )

// color codes
$puts(headline,ffffff)
$puts(info,beb9b4)
$puts(text,ffffff)
$puts(grayed,969696)
$puts(gaincolor,d2aa6e)

// chars
$puts(rating_char,■)
$puts(progress_char,■)

// End Global Config
// ==============================================


beb9b4Mode: ffffff%_trackinfo_mode%$char(10)$if(%_trackinfo_notrack%,No track,

// progressbar config
$puts(theme,1)
$puts(progress_length,68)

$if($strcmp($get(theme),1),
$puts(progress_color1,1080d0)
$puts(progress_color2,c3c3c3)
)


// PREPARE COLOR-STRINGS
// =========================================
$puts(progress_color1a,$blend($get(progress_color1),000000,1,4.5))
$puts(progress_color2a,$blend($get(progress_color2),000000,1,5.7))
// progressbar
$char(1)C$get(headline)d2aa6e▪ 9a7030▪ 705123▪ 1080d0P R O G R E S S
705123 ▪ 9a7030▪ d2aa6e▪$char(10)
$puts(progressbar,
$if(%_length_seconds%,
$puts(progress,$muldiv(%_time_elapsed_seconds%,$get(progress_length),%_length_seconds%))
$transition($repeat($get(progress_char),$get(progress)),$get(progress_color1a),$get(progress_color1))
$transition($repeat($get(progress_char),$sub($get(progress_length),$get(progress))),$get(progress_color2a),$get(progress_color2))
))

$char(1)C$get(progressbar))$char(10)

// I N F O R M A T I O N S
$if($strcmp(1,$get(show_songinfo)),
$char(1)C$get(spacer)
$char(1)C$get(headline)d2aa6e▪ 9a7030▪ 705123▪ 1080d0I N F O S
705123 ▪ 9a7030▪ d2aa6e▪$char(10)
$get(spacer2)$if($strcmp(1,$get(title)),$get(info)Title: $get(text)$if(%title%,1080d0%title%,$get(grayed)'['No Title']')$char(10))
$get(spacer2)$if($strcmp(1,$get(artist)),$get(info)Artist: $get(text)$if(%artist%,%artist%,$get(grayed)'['Unknown Artist']')$char(10))
$get(spacer2)$if($strcmp(1,$get(album)),$if(%album%,$get(info)Album: $get(text)%album% $get(grayed)$get(discinfo) $char(10)))
$get(spacer2)$if($strcmp(1,$get(mixartist))
|$strcmp(1,$get(band))
,
$if($strcmp(1,$get(mixartist)),$if(%mixartist%,$get(info)MixArtist: $get(text)%mixartist%$char(10)))
$if($strcmp(1,$get(band)),$if(%band%,$get(info)Band: $get(text)%band%$char(10))))
$if($strcmp(1,$get(tracknumber)),$if(%tracknumber%,$get(info)Track: $get(text)%tracknumber%$char(10)))
$if($strcmp(1,$get(genre)),$if(%genre%,$get(info)Genre: $get(text)%genre%$char(10)))
$if($strcmp(1,$get(bpm)),$if(%bpm%,$get(info)bpm: $get(text)%bpm%$char(10)))
$get(spacer2)$if($strcmp(1,$get(date)),$if(%date%,$get(info)Date: $get(text)%date%$char(10)))
$if($strcmp(1,$get(copyright)),$if(%copyright%,$get(info)© $get(text)%copyright%$char(10)))
)
// End Song Info

// S T A T I S T I C S
$if($strcmp(1,$get(show_techinfo)),
$char(1)C$get(spacer)
$char(1)C$get(headline)d2aa6e▪ 9a7030▪ 705123▪ 1080d0S T A T I S T I C S 705123▪ 9a7030▪ d2aa6e▪$char(10)
$get(spacer2)$if($strcmp(1,$get(codec)),$get(info)Codec: $get(text)%__codec%$char(10))
$get(spacer2)$if($strcmp(1,$get(bitrate)),$get(info)Bitrate: $get(text)$if(%__lame_profile%,1080d0--%__lame_profile%,%__bitrate% Kbit/s)$get(grayed)[ '('%__lame_version%')']$char(10))
$get(spacer2)$if($strcmp(1,$get(channels)),$get(info)Channels: $get(text)$if(%__channels%,$ifgreater(%__channels%,2,%__channels%ch,$ifgreater(%__channels%,1,Stereo,Mono)),)$char(10))
$get(spacer2)$if($strcmp(1,$get(time_elapsed_total)),$get(info)Time: $get(text)%_time_elapsed% / %_time_total%$char(10))
$get(spacer2)$if($strcmp(1,$get(samplerate)),$get(info)Samplerate: $get(text)%__samplerate% Hz$char(10))
$puts(size,5)
$if($strcmp(1,$get(trackgain)),$if(%__replaygain_track_gain%,$get(info)$get(spacer2)Track Gain: $get(text)$cut(%__replaygain_track_gain%,$get(size)) dB$char(10)))
$if($strcmp(1,$get(albumgain)),$if(%__replaygain_album_gain%,$get(info)$get(spacer2)Album Gain: $get(gaincolor)$cut(%__replaygain_album_gain%,$get(size)) dB$char(10)))

$puts(rating,1)
$puts(_rating,$repeat($get(rating_char),%trackrating%))$if($strcmp(1,$get(rating)),$if(%trackrating%,$get(info)Rating:$get(text) $get(_rating) $get(grayed)
$char(10)))

$if($strcmp(1,$get(play_counter)),$if(%play_counter%,$get(info)Played $get(text)%play_counter%$get(info) time'('s')' since ffffff23/02/2005$char(10)))
$if($strcmp(1,$get(play_date)),$if(%play_date%,$get(info)Last played: $get(text)%play_date%$char(10)))
$if($strcmp(1,$get(encodedby)),$if(%encodedby%,$get(info)Encoded by: $get(text)%encodedby%$char(10)))
$if($strcmp(1,$get(encodersettings)),$if(%encodersettings%,$get(info)Encoder Settings: $get(text)%encodersettings%$char(10)))

// formating filesize string by upNorth
$get(spacer2)$if($strcmp(1,$get(filesize)),$get(info)Filesize: $get(text)$div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),1000,1048576),3),2)' MB'$char(10)))
$if($strcmp(1,$get(filename_ext)),$get(info)File: $get(text)%_filename_ext%$char(10))
$if($strcmp(1,$get(mediatype)),$if(%mediatype%,$get(info)Mediatype: $get(text)%mediatype%$char(10)))
$if($strcmp(1,$get(size)),$if(%size%,$get(info)Size: $get(text)%size%$char(10)))
$if($strcmp(1,$get(songlen)),$if(%songlen%,$get(info)Length: $get(text)%songlen%$char(10)))
$if($strcmp(1,$get(songlen)),$if(%songlen%,$get(info)Length: $get(text)%songlen%$char(10)))
$if($strcmp(1,$get(time)),$if(%time%,$get(info)Time: $get(text)%time%$char(10)))
$char(1)C$get(spacer)

// End Tech Info
chaosblade
Here's my latest, a slightly modified version of Navigator suite with a custom color scheme aswell:

user posted image
lwiczek
thx synth7
necropimp
sometime i'm gonna have to clean my trackinfo code up

CODE
// transition color for fading out
$puts(trans_back,606060)

// transition color for foreground
$puts(trans_frnt,ffffff)
$puts(r_cl,e2e2e2)

$if(%_trackinfo_notrack%,$char(10)$char(10)$char(10)$char(10)$char(10)$char(10)$char(1)CNo track playing,
$if(%date%,Date: a3a3a3%date%$char(10),$if(%origyear%,Date: a3a3a3%origyear%$char(10),))
$if(%genre%,Genre: a3a3a3%genre%$char(10),)
Length: a3a3a3$if(%_isplaying%,%_time_elapsed%/%_length%,%_length%)$char(10)
Codec: a3a3a3%__codec%$char(10)
Bitrate: a3a3a3
%__bitrate%Kbps $if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr),VBR,CBR))$char(10)
$if(%__lame_profile%,Preset: a3a3a3%__lame_version% %__lame_profile% $char(10),)
$if(%__mpc_profile%,Profile: a3a3a3%__mpc_profile%$char(10),)
Compression: a3a3a3$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '['$muldiv(%__bitrate%,100,1411)'%]'$char(10)
Channels: a3a3a3$if($stricmp($codec(),MP3),%__mp3_stereo_mode%,$ifgreater(%__channels%,1,Stereo,Mono))$char(10)
$if(%__bitspersample%,Bitdepth:a3a3a3 %__bitspersample%$char(10),)
Samplerate: a3a3a3%__samplerate% Hz$char(10)
Filesize: a3a3a3$div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),100,1048576),2),2)'MB'$char(10)
Rating: a3a3a3$if(%rating%,$if(%rating%,$select(%rating%,⋆$get(r_cl)⋆⋆⋆⋆,⋆⋆$get(r_cl)⋆⋆⋆,⋆⋆⋆$get(r_cl)⋆⋆,⋆⋆⋆⋆$get(r_cl)⋆,⋆⋆⋆⋆⋆)),Not Yet Rated)$char(10)
$char(1)C$transition(-------------------------,$get(trans_back),$get(trans_frnt))$get(white)-$transition(-------------------------,$get(trans_frnt),$get(trans_back))$char(10)
$char(1)CTrack Progress a3a3a3$muldiv(%_time_elapsed_seconds%,100,%_time_total_seconds%)'%'$char(10)
$char(1)C$progress2(%_time_elapsed_seconds%, %_time_total_seconds%, 30,'█',a3a3a3'█')
)
lwiczek
Thanks again.
erftek
QUOTE(amonrei @ May 14 2005, 01:52 AM)
user posted image
*


Please post your formatting string. That looks great!
Lyx
QUOTE(erftek @ May 15 2005, 09:45 PM)
Please post your formatting string. That looks great!
*


This using the "medieval"-colorscheme, but with a different status-bar.
Zerals
My first one using Darkalpha!! (May 14th)
WinXP Theme : Older

Then I edited it a little. (May 14th)
Win2k Theme : Newer

Again, except I installed StyleXP and changed the visual style. (May 15th)
New One

Blah... (May 17th)
Another New One
amonrei
QUOTE(Lyx @ May 16 2005, 04:19 AM)
QUOTE(erftek @ May 15 2005, 09:45 PM)
Please post your formatting string. That looks great!
*


This using the "medieval"-colorscheme, but with a different status-bar.
*


Right on the dot. tongue.gif I just love this color scheme. biggrin.gif
user posted image
edsche
here is my foobar smile.gif
Mystiq
EDIT:

Wrong f***ing thread. Sorry.
chaosblade
Where do you get the lyrics panel ?

and how accurate is it ?
edsche
you can get it here, but its a little bit buggy :|
Zurman
QUOTE(edsche @ May 16 2005, 07:29 AM)
you can get it here, but its a little bit buggy :|
*


Very buggy crying.gif
chaosblade
any source of .lrc files ? id hate having to go build 1200 of those now, as they are a bit more then just text files wink.gif
Sebastian Mares
How can I center text in track info? I tried using tabs, but they show up as square. unsure.gif
synth7
QUOTE(Sebastian Mares @ May 16 2005, 03:11 PM)
How can I center text in track info? I tried using tabs, but they show up as square. unsure.gif
*



Put $char(1)C before the line
chaosblade
Thanks, Nice tip, synth7, didnt know that myself. now completely redesigned my track info panel to loo neater wink.gif
Bachi-Bouzouk
http://eolindel.free.fr/images/screenshot.gif

here is mine

I've picked up some tips and elements from everywhere on the forum.

It's my "for the screenshot" version, I usually don't use G-Force nor some tabs

here is the usual foobar:
http://eolindel.free.fr/images/screenshot2.gif

My screenshots are in 1280*1024 so it may be quite huge on some screens.. 'less than 250Ko each)
hongmei
greeny cleany
user posted image
MisterP
0.9 is here

foobar 0.9 beta 3, with foo_ui_columns 0.13 pre-alpha 10 smile.gif

user posted image




Xerion
Just playing with the beta smile.gif
Lyx
Umm, i thought navigator would be broken with 0.9beta?

(i didn't check myself yet, but i would guess that the new field-mappings may screw up some things)

edit: nice colorscheme BTW.

- Lyx
Xerion
At globals tab I just activated all the checkboxes, then it worked, i think smile.gif
Lyx
QUOTE(Xerion @ May 23 2005, 03:21 PM)
At globals tab I just activated all the checkboxes, then it worked, i think :)
*


Interesting. Maybe its just that the FCS-format did change, so some checkboxes weren't enabled properly when importing? Whatever - i'll just wait a few days or a week until the dust of 0.9beta and ui_columns alpha has settled, and then begin working on an update.

- Lyx
Frank Bicking
QUOTE(Xerion @ May 23 2005, 03:08 PM)

If someone should wonder how to place a panel at the right side:

Go to Preferences | Display | Columns UI, switch to the Layout tab and right click in the left area. Select Change base | Horizontal splitter from the menu, right click the Splitter node and chose Playlist views | Columns Playlist from the menu, and in a second turn Panels - Playlist switcher.

Very nice feature once you realize there is a context menu. rolleyes.gif

Edit: added a screenshot

user posted image
Xerion
Took me a while to figure it out too cool.gif
n0mad
Hi! I'm a new and entusiastic foobar user. Great program. Just after a few days with it and lurking around this forum, I can't believe I ever used WinAMP!!!

Well, c what I've done.

user posted image

If anyone has any suggestions, please do tell.

And one question - is there a way to somehow blur fonts a little in foobar?

And, once again, foobar rox!!!
Tiis
Played with 0.9b too..

user posted image

Playcounter/Rateing Column dosn't work right now.. as in 0.8.3
krazy
Yeah, me too...
user posted image

Polychromatic inspired... smile.gif
Strictly4me
QUOTE(Tiis @ May 24 2005, 01:20 PM)
Played with 0.9b too..
Playcounter/Rateing Column dosn't work right now.. as in 0.8.3

Can you share your statusbar-strings, please? - THX

((((( Strictly4me )))))
JensRex
The 0.9 betas provided an opportunity to rewrite my playlist formatting. Much needed. The old one was a mess, though functional.

I decided to spice it up a little. I hate the white and grey bland colors with tiny fonts, so I decided to go for something larger and more colorful. I find it's rather pleasant to look at, and the formatting code is much cleaner now. It's simple and functional. No superflous lines and gadgets anywhere, just essential info. Using default ui.

user posted image
Sandman2012
@JensRex: I really like that. Makes me want to switch back to te default UI. Could you post your formatting string please? I haven't had time to muck about with strings just yet.
JensRex
QUOTE(Sandman2012 @ May 24 2005, 07:09 PM)
@JensRex: I really like that. Makes me want to switch back to te default UI. Could you post your formatting string please? I haven't had time to muck about with strings just yet.
*

Sure.

CODE
// playlist formatting by JensRex

// shortcut for closing color tag. makes for more uniform looking code
$puts(color_reset,$rgb())

// determine if current playlist entry is playing
$if(%_isplaying%,

// color presets for currently playing track
$puts(color_artist,$rgb(255,128,128,255,128,128))
$puts(color_album,$rgb(0,255,0,0,255,0))
$puts(color_title,$rgb(0,255,255,0,255,255))
$puts(color_codec,$rgb(255,255,0,255,255,0))
$puts(color_length,$rgb(255,128,192,255,128,192))
$puts(color_notag,$rgb(128,128,128,128,128,128))

// this comma starts the else portion of the %_isplaying% '$if'
,

// color presets for non playing tracks
$puts(color_artist,$rgb(224,32,32,224,32,32))
$puts(color_album,$rgb(0,224,128,0,224,128))
$puts(color_title,$rgb(0,128,255,0,128,255))
$puts(color_codec,$rgb(255,128,0,255,128,0))
$puts(color_length,$rgb(255,0,128,255,0,128))
$puts(color_notag,$rgb(128,128,128,128,128,128))

//this paranthesis ends the %_isplaying% '$if'
)

// this '$if' determines if file is tagged or not by checking for
// presence of artist tag. some room for improvement here
$if(%album artist%,

// if file contains tags, do this. includes "artist, the" hackery for nicer sorting
$get(color_artist)%playlist_number%. $if($strcmp($left(%album artist%,4),The ),$right(%album artist%,$sub($len(%album artist%),4))', 'The,%album artist%)$get(color_reset)
$tab()
$get(color_album)'['$if2(%date%, )']' [%album%[ '('CD%disc%')']]$get(color_reset)
$tab()
$get(color_title)'[#'$if2(%tracknumber%, )']' [%title%[ '//' %track artist%]]$get(color_reset)
$tab()

// this comma starts the 'else' portion of the tag-presence '$if'
,

// if file has no tags, do this. displays filename only
$get(color_notag)%playlist_number%.
$get(color_notag)%_filename_ext%$get(color_reset)
// this properly aligns following codec and length text by inserting tabs
$repeat($tab(),3)

// this paranthesis closes the tag-presence '$if'
)

// codec info and track length gets displayed regardless of tag-presence
$get(color_codec)%bitrate% kbps, %codec%$get(color_reset)
$tab()
$get(color_length)%length%$get(color_reset)


Relevant color settings are: background black, selection 64,64,64, focus rectangle 128,128,128.

Font settings are: Lucida Sans Unicode, size 10.

Edit: Minor changes.
Electrolyte
Only had Foobar2000 for about 2 hours and I've already started to change it around tongue.gif

So far I've got this, may keep changing it later though smile.gif

http://img.photobucket.com/albums/v304/Ele.../foobar2000.jpg
Tiis
QUOTE(Strictly4me @ May 24 2005, 05:31 PM)
QUOTE(Tiis @ May 24 2005, 01:20 PM)
Played with 0.9b too..
Playcounter/Rateing Column dosn't work right now.. as in 0.8.3

Can you share your statusbar-strings, please? - THX

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



Sure cool.gif

CODE
$progress2(%_time_elapsed_seconds%, %_time_total_seconds%, 103,'█',F9E6BF'█')


103=length of the progressbar
kingojb
Edit images not on server anymore.
fabiospark
I think the real freedom will begin when we'll be able to put there many instances of the same "panel" and config each of them individually: the active playlist unchained from another playlist panel and differently formatted, the same for the library viewers (album list, playlist tree etc), one trackinfo for the now playing track and another for the selected tracks .......... etc.
Sandman2012
I've got 0.9 working - similar string to my older configs, except I'm using the default ui instead of the newer columns ui alpha.

user posted image

Simplicity!
Lance Uppercut
QUOTE(fabiospark @ May 24 2005, 03:43 PM)
I think the real freedom will begin when we'll be able to put there many instances of the same "panel" and config each of them individually: the active playlist unchained from another playlist panel and differently formatted, the same for the library viewers (album list, playlist tree etc), one trackinfo for the now playing track and another for the selected tracks .......... etc.
*



I would love to see this implemented.

user posted image

By the way, Krazy, your config is really nice. I am going to steal some ideas from it!
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.