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
hedge153
Still trying to figure out if I like this colour config i came up with or not...

user posted image

$puts(theme_dark,0)

// foreground colors
$puts(standard_color,$rgb(46,46,46))
$puts(special_color,$rgb(81,101,133))
$puts(playing_color,$rgb(208,237,255))
$puts(borders_color,$rgb(138,163,183))

// background colors
$puts(bg_color,$rgb(247,244,241))
$puts(bg_color2,$rgb(235,232,227))

// various symbols used in display
$puts(symbol_seperator,' • ')
$puts(symbol_rating,⋆ )
synth7
oops....
Lyx
Hint towards those posting Navigator color-schemes:

If you additionally post them in the navigator-thread, then they may be included into future versions. I don't have the time to keep track of color-schemes posted in the gallery-thread, so only schemes which are posted in the navigator-thread will be in the pool for inclusion into future versions.

@hedge:
Sorry to be the messenger of bad news, but 1.2.1 was additionally released in a -minimal- variant optimized for faster playlist-scrolling - with tag-guessing and other stuff removed - so you probably did some work which you could have gotten for free *g*

- Lyx
hedge153
QUOTE(Lyx @ Apr 15 2005, 06:20 AM)

@hedge:
Sorry to be the messenger of bad news, but 1.2.1 was additionally released in a -minimal- variant optimized for faster playlist-scrolling - with tag-guessing and other stuff removed - so you probably did some work which you could have gotten for free *g*

- Lyx
*


Ah well, i just took the 1.2.1 file, and fiddled and removed till I was happy. I would have had to do some stuff to the optimized variant anyway, and deleting tag guessing only took 30 seconds cos of the good structure of ya code wink.gif
rapsodie
OK, you all might think this is a silly question, but I haven't seen any answers in the forum or on the wiki:

How do you get your artists/albums columns to show the name of the artist/album only once? It's been driving me nuts!
0x1ff
These configs check the %tracknumber% tag. If it is 1, it displays %artist%, if it is 2, it displays %album% - and so on. It works but isn't that beautiful to my eyes.


QUOTE(rapsodie @ Apr 14 2005, 08:53 PM)
How do you get your artists/albums columns to show the name of the artist/album only once?  It's been driving me nuts!
*



Frank Bicking
Example:
CODE
$select(%tracknumber%,%artist%,%album%,%date%)
rapsodie
QUOTE(Frank_Bicking @ Apr 15 2005, 04:50 AM)
Example:
CODE
$select(%tracknumber%,%artist%,%album%,%date%)

*



Thanks! smile.gif


My latest shots:

File Mode

Album Mode

It's still not as tricked-out as some others I've seen on here ... but it still does everything I want it to do! ;-)
Masahiko
QUOTE(Olive @ Apr 12 2005, 05:22 AM)
Masahiko, which font are you using? i like tahoma but your looks less "aliased"
*



I'm using Frutiver Linotype, 7pt, bold with clear type anti-aliased.

(i'm in late, sorry rolleyes.gif )
necropimp
probably the last place people think of adding useless info to...

user posted image


for those who want to save a little time...
CODE
Artist:  %ARTIST%$char(10)
Album: %album%$char(10)
Track:  %tracknumber%$char(10)
Title:    %title%$char(10)
%__bitrate%Kbps$if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr), VBR, CBR)) %__Codec%
mj-barton
QUOTE(necropimp @ Apr 17 2005, 12:11 AM)
probably the last place people think of adding useless info to...

user posted image


for those who want to save a little time...
CODE
Artist:  %ARTIST%$char(10)
Album: %album%$char(10)
Track:  %tracknumber%$char(10)
Title:    %title%$char(10)
%__bitrate%Kbps$if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr), VBR, CBR)) %__Codec%

*



Which component is that?

Edit: Nevermind. Its under Display->Title Formating then under the System Tray tab.
necropimp
i should also mention that little box has a character limit so here is the code to help cut down on problems with the character limit

CODE
Artist:  $iflonger(%artist%,25,$trim($cut(%artist%,$sub(25,3)))...,%artist%)$char(10)
Album: $iflonger(%album%,25,$trim($cut(%album%,$sub(25,3)))...,%album%)$char(10)
Track:  %tracknumber%$char(10)
Title:    $iflonger(%title%,25,$trim($cut(%title%,$sub(25,3)))...,%title%)$char(10)
%__bitrate%Kbps$if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr), VBR, CBR)) %__Codec%


here is what it looks like...
user posted image
Olive
QUOTE(Masahiko @ Apr 16 2005, 11:07 AM)
QUOTE(Olive @ Apr 12 2005, 05:22 AM)
Masahiko, which font are you using? i like tahoma but your looks less "aliased"
*



I'm using Frutiver Linotype, 7pt, bold with clear type anti-aliased.

(i'm in late, sorry rolleyes.gif )
*


Thanks =)
By the way, my current foobie:

user posted image


odnorf
My foobar is a slightly modified Navigation-Suite by Lyx.
(I have added some simple things like the vorbis version, the parenthesis color etc)

MyFoobar
mj-barton
QUOTE(rapsodie @ Apr 15 2005, 12:41 PM)
QUOTE(Frank_Bicking @ Apr 15 2005, 04:50 AM)
Example:
CODE
$select(%tracknumber%,%artist%,%album%,%date%)

*



Thanks! smile.gif


My latest shots:

File Mode

Album Mode

It's still not as tricked-out as some others I've seen on here ... but it still does everything I want it to do! ;-)
*



Can you post your formating strings?
rapsodie
QUOTE(mj-barton @ Apr 18 2005, 11:18 PM)
Can you post your formating strings?
*



Sure. smile.gif Is there a particular trick or section you wanted to figure out?
brumal666
user posted image

Narf! cool.gif

--
After silence, that which comes nearest to expressing the inexpressible is music.
mj-barton
I am working on this part:

CODE
$select(%tracknumber%,%artist%,%album%,%date%)
rapsodie
QUOTE(mj-barton @ Apr 19 2005, 10:39 AM)
I am working on this part:

CODE
$select(%tracknumber%,%artist%,%album%,%date%)

*



Here's what I did:

In the Display tab under the Artist column:

CODE

$select(%tracknumber%,%artist%)


In the Display tab under the Album column:

CODE

$select(%tracknumber%,%album%,%label% '('%date%')')


Any probs, PM me. smile.gif
mj-barton
Thanks.

How do you get alternating colors for the rows. A great example would be iTunes' pattern of blue and white.
synth7
user posted image

Boom.
mj-barton
QUOTE(synth7 @ Apr 19 2005, 04:56 PM)
user posted image

Boom.
*



Excellent color scheme.
How did you get the alternating colors for each individual row?
SurfTranquille
QUOTE(synth7 @ Apr 19 2005, 06:56 PM)
user posted image

Boom.
*



Nice one! BTW what is the variable u used to get the '-ape' info @ bitrate (in the track info panel). May I have the script?
Smitty Jones
QUOTE(mj-barton @ Apr 19 2005, 08:12 PM)
Excellent color scheme.
How did you get the alternating colors for each individual row?
*



i'm not entirely sure how it's done, but i have the jist of it. you'll have to use the $mod() function in the color tab of your column. something like:

$ifgreater($mod(%_playlist_number%,2),0,[color a],[color b])

i probably left something out, because i'm a dolt, but that might work.
war59312
Minimalistic biggrin.gif

user posted image

Speical thing is that everyone only shows if it exists. Including when listing online via shout cast.

Also, everything is saved in the database instead of the file itself via sqlite. biggrin.gif
Mayfly
I like something simple. laugh.gif

user posted image
brumal666
QUOTE(Mayfly @ Apr 20 2005, 03:22 AM)
I like something simple. laugh.gif

user posted image
*



That's a nifty minimal config. But how does John Williams fit under "G"? tongue.gif
mj-barton
How did you get the to display? When I did that it ended up with something else.
Mayfly
QUOTE(brumal666 @ Apr 20 2005, 11:13 PM)
That's a nifty minimal config. But how does John Williams fit under "G"?  tongue.gif
*



The "G" here is meaningless, just a symbol, a mark, for the tab tongue.gif

QUOTE(mj-barton @ Apr 21 2005, 10:22 AM)
How did you get the to display? When I did that it ended up with something else.
*



I think it's something about font, about unicode.

I'm not sure. crying.gif
Strictly4me
Look here for more infos!

((((( Strictly4me )))))
Neksus
My current foobar2000 config!
My new version of Azrael 5 (Yes I'm back)
user posted image
Shadikka
user posted image

EDIT: That little box there is just my Samurize. Don't care about that one...

A bit tweaking here, a bit there.
Formatting code will be posted upon a request. (Please PM or email, I may forget this thread completely.) smile.gif
Ronny Pries
shadikka,

fancy sharing your config with teh world?

ronny
delbres
user posted image
kadajawi
QUOTE(delbres @ Apr 22 2005, 05:59 AM)
user posted image
*


wtf is that?
anza
QUOTE(kadajawi @ Apr 22 2005, 04:05 PM)
QUOTE(delbres @ Apr 22 2005, 05:59 AM)
user posted image
*


wtf is that?
*


I'd say foobar. I would definitely want to see teh whole desktop, looks really minimal (Y)
cLess-R34
I would lean towards minimalism as well:

Click on image to see full desktop:
Volume Control's on the right folks cool.gif
user posted image
myxomatosis
Litestep?
cLess-R34
Much tweaked BlackBox (BBLean v1.13b)
Tiis
My FB:

user posted image

smile.gif It will look fine now.
Shadikka
Heh, I wouldn't have guessed people like my foobar formatting string.
Well, here it is: http://koti.mbnet.fi/wwolf/DBlueGradient.fcs.

You should use a formatting string which shows tracks with no album and/or tracknumber last or only have whole albums in the playlist, it looks pretty messed else.
Enjoy! smile.gif
Lance Uppercut
QUOTE(Tiis @ Apr 22 2005, 11:42 AM)
My FB:

http://home.arcor.de/Tiis/fbti.jpg

smile.gif


moderation: max. for inlined screenshots: ca. 800x600px, 80KB. please use links and/or thumbnails for larger ones. png is usually better than jpeg for screenshots.
*



In Flames Rocks SO HARD!

user posted image
fabiospark
QUOTE(Tiis @ Apr 22 2005, 06:42 PM)
My FB:

http://home.arcor.de/Tiis/fbti.jpg

smile.gif


moderation: max. for inlined screenshots: ca. 800x600px, 80KB. please use links and/or thumbnails for larger ones. png is usually better than jpeg for screenshots.
*



Could you share you status bar, at least, please?

Thanks.
Tiis
QUOTE(fabiospark @ Apr 23 2005, 06:53 AM)
QUOTE(Tiis @ Apr 22 2005, 06:42 PM)
My FB:

user posted image

smile.gif It will look fine now.


*



Could you share you status bar, at least, please?

Thanks.
*



CODE
//**************************************
// set colors
//**************************************
$puts(col_paused,808040)
$puts(col_streaming,008800)
$puts(col_cue_file,880000)
$puts(col_progbar_symb1,804000)
$puts(col_progbar_symb2,000000)
$puts(col_time_remaining,000000)
$puts(col_bitrate,B7948F)
$puts(col_bitrate2,808080)
$puts(col_stereo,808080)


//**************************************
// set variables
//**************************************
$puts(text_streaming,'Streaming')
$puts(text_listened_for,'Listened for:')
$puts(text_cue_file,'Cue File')
$puts(text_paused,'PAUSED')
$puts(text_time_remaining,[%_time_remaining%])
$puts(spacer_symb,' ')
$puts(spacer_width,2)
$puts(progbar_symb1,'ι')
$puts(progbar_symb2,'ι')
$puts(progbar_length,90)
$puts(text_bitrate,$get(col_bitrate)$if2($pad(%__bitrate_dynamic%,3)808080'

kbps',$if2(%__bitrate%' kbps',)))
$puts(text_extrainfo,[%__extrainfo%])



//**************************************
// add colors and formatting
//**************************************
$puts(spacer,$repeat($get(spacer_symb),$get(spacer_width)))
$puts(text_streaming,$get(col_streaming)$get(text_streaming))
$puts(text_listened_for,$get(col_streaming)$get(text_listened_for))
$puts(text_cue_file,$get(col_cue_file)$get(text_cue_file))
$puts(text_paused,$get(col_paused)$get(text_paused))
$puts(text_time_remaining,$get(col_time_remaining)$get(text_time_remaining))
$puts(progbar_symb1,$get(col_progbar_symb1)$get(progbar_symb1))
$puts(progbar_symb2,$get(col_progbar_symb2)$get(progbar_symb2))



//***********************************************************
//***********************************************************



//**************************************
// streaming
//**************************************
$puts(streaming,
$if(%_time_total%,,
$get(text_streaming)$get(spacer)
)
)



//**************************************
// cuefile
//**************************************
$puts(cue_file,
$if(%__cue_audiotype%,
$get(text_cue_file)$get(spacer)
)
)



//**************************************
// codec
//**************************************
$if(%__codec%,

$if($stricmp(%__codec%,musepack),$puts(codec,'MPC'),
$if($stricmp(%__codec%,vorbis),$puts(codec,'Ogg'),
$get(spacer) $puts(codec,%__codec%)
))
,
//If no codec tag and not streaming, read file extention
$if($and(%_time_total%,$not(%__codec%)),
$puts(codec,$upper($ext(%_path%)))
)

)



//**************************************
// bitrate
//**************************************
$puts(bitrate,$get(spacer)$get(text_bitrate))

$if($stricmp(%__codec%,musepack),
$if(%__mpc_profile%,
$puts(bitrate,$get(spacer)%__mpc_profile%$get(spacer)$get(text_bitrate))
)
)


//**************************************
// extrainfo
//**************************************

$puts(extrainfo,$get(spacer)$get(text_extrainfo))

$if($stricmp(%__codec%,MP3),
$if(%__extrainfo%,,
$puts(extrainfo,$get(spacer)'CBR')
)
)

$if($stricmp(%__codec%,musepack),
$if(%__mpc_streamversion%,$puts(extrainfo,$get(spacer)'sv'%__mpc_streamversion%))
)



//**************************************
// samplerate
//**************************************
$puts(samplerate,
$if(%__samplerate%,
$get(spacer)$cut(%__samplerate%,2)'kHz'
)
)



//**************************************
// channels
//**************************************
$puts(channels,
$if(%__channels%,
$get(spacer)$ifgreater(%__channels%,2,%__channels%ch,$ifgreater(%__channels%,1,Stereo,Mono))
)
)


//**************************************
// mp3 stereo mode
//**************************************
$puts(stereo_mode,
$if2( $get(col_stereo)'['$caps(%__mp3_stereo_mode%)']',)
)

//**************************************
// Replay Gain
//**************************************
//track gain
$puts(rpg,

$if(%__replaygain_track_gain%,
$get(spacer)
' TGain:'$cut(%__replaygain_track_gain%,5)'dB'

$if(%__replaygain_album_gain%,
$get(spacer)' AGain:'$cut(%__replaygain_album_gain%,5)'dB'
)
)
)



//**************************************
// progress bar
// (checking total because of streaming)
//**************************************
$puts(progress_bar,
$if(%_time_total_seconds%,
$get(spacer)$get(spacer)
$progress2(%_time_elapsed_seconds%,%_time_total_seconds%,$get(progbar_length),$get(progbar_s

ymb1),$get(progbar_symb2))
)
)



//**************************************
// progress %
// (checking total because of streaming)
//**************************************
$puts(progress_%,
$if(%_time_total_seconds%,
'

'808080$pad_right($muldiv(%_time_elapsed_seconds%,100,%_time_total_seconds%),3)808080'%'

' '
)
)



//**************************************
// 'Listened for:'
// (used for streaming)
//**************************************
$puts(listened_for,
$if(%_time_total%,,
$get(spacer)$get(spacer)$get(text_listened_for)
)
)



//**************************************
// time
//**************************************
$puts(time,
$get(spacer)
' '[%_time_elapsed%]
$if(%_time_total%,
'/'%_time_total%' ' $get(spacer)$get(spacer)$get(spacer)
'Time left: '$get(text_time_remaining)
)
)



//**************************************
// paused
//**************************************
$puts(paused,
$if(%_ispaused%,
$get(text_paused)
)
)



//**************************************
//**************************************
// create string
//**************************************
//**************************************

$get(streaming)
$get(cue_file)
$get(codec)
$get(bitrate)
$get(extrainfo)
$get(samplerate)
$get(channels)
$get(stereo_mode)
$get(progress_bar)
$get(progress_%)
$get(spacer)$get(listened_for)
$get(time)
$get(spacer)$get(rpg)
//$repeat($char(32),3)

//Right adjust from now on
$char(9)
$get(paused)


Here it is, wink.gif
Sinaptik
QUOTE(g-spot @ Apr 10 2005, 07:54 PM)
user posted image

simple...
*



Hi,

I would like the same cool 3D playlist effect, how can I achieve it ?

Thank you. smile.gif
myxomatosis
user posted image user posted image

rolleyes.gif
miscellanea
mine...
user posted image


QUOTE(myxomatosis @ Apr 24 2005, 01:39 PM)
user posted image

rolleyes.gif
*



black and cool! smile.gif
synth7
QUOTE(SurfTranquille @ Apr 19 2005, 10:59 PM)
QUOTE(synth7 @ Apr 19 2005, 06:56 PM)
user posted image

Boom.
*



Nice one! BTW what is the variable u used to get the '-ape' info @ bitrate (in the track info panel). May I have the script?
*



Something like (I'm not at home now)...

CODE
$if(%__lame_profile%,--%__lame_profile%,%__bitrate%kbps)

Strictly4me
Next one. smile.gif

user posted image

((((( Strictly4me )))))
necropimp
QUOTE(synth7 @ Apr 24 2005, 12:35 AM)
QUOTE(SurfTranquille @ Apr 19 2005, 10:59 PM)
QUOTE(synth7 @ Apr 19 2005, 06:56 PM)
user posted image

Boom.
*



Nice one! BTW what is the variable u used to get the '-ape' info @ bitrate (in the track info panel). May I have the script?
*



Something like (I'm not at home now)...

CODE
$if(%__lame_profile%,--%__lame_profile%,%__bitrate%kbps)

*



should also be mentioned that you need the modified standard input component
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.