Help - Search - Members - Calendar
Full Version: Columns UI / Panels UI appearance
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, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132
himurakenshin
could anyone please show me how to make my foobar look like this?
http://img7.picsplace.to/img.php?file=img7/13/desk2.PNG
Beavis04
Here's my new Foobar with 0.9.1:

BrilliantGreen
QUOTE (himurakenshin @ May 12 2006, 01:21) *
could anyone please show me how to make my foobar look like this?
http://img7.picsplace.to/img.php?file=img7/13/desk2.PNG

here it is the layout that is tongue.gif.. (tryed my crack at re-creating somebody eles layout ohmy.gif )

CODE
H splitter
  V splitter
     Album Art
     Playlist switcher
  V splitter
     Track info
     Columns Playlist
     Sectrum analyser
     H splitter
        Buttons
        Seekbar
        Menu
Masahiko
QUOTE (Masahiko @ May 11 2006, 14:39) *
Mine, with a "classic" layout :



You can find it here
zlebandit
QUOTE (Masahiko @ May 12 2006, 13:48) *
QUOTE (Masahiko @ May 11 2006, 14:39) *

Mine, with a "classic" layout :



You can find it here



Tks Masahiko but it does not seem to be the same as on the picture ! smile.gif
hagaki
pretty basic. using Habla's trackinfo (modified)



i was wondering about the playlist setups most of you have, like the one posted above me. how do you split it by artist/album like that? i've tried fooling around with some css stuff to no success...
BaronLSN
Couple of questions from somone who is fairly new to all this. Firstly, prior to my further experimentation [and install of new components] I had the Album List window as a panel in the sidebar. But now it has disappeared and I can't find anyway to re-add it > not in Layout or anywhere. It is still active and working [i can get the window] but I can't 'panelise' it.

Secondly, I love the FCS where you have album info amalgamated on the left, and tracks on the right [as in many SS's here]. My problem is that whilst I have a lot of albums, I also have a fair number of 1 or 2 track artists. Can someone tell me how I can keep the setup for albums, but alter the singles so that I can still tell who made it, what album etc. [ie on the one line].

Edit: I've got it to a degree, except I need some help with ifgreater in globals.

I have
CODE
$if($and(%tracknumber%,%album%),
$set_global(isAlbum,1)
)


I'm not sure how to add a condition that tracks for that album must be greater than 4. It has to do with $ifgreater(%tracknumber%,4,) , I think, but I'm not sure. Basically, if it can't find four tracks for that album, I want it to display the information on a single line, but I'm not sure how to define that.

Thirdly, I've figured out my layout problem [getting Trackinfo on the top], but I now need advice [or a guide] to getting it looking nice. Example trackinfo code + ss would also be nice.

Pheew... think that's it ohmy.gif
acedriver
@BaronLSN

you could add TOTALTRACKS tag for each album and use this

CODE
$if($greater(%totaltracks%,4),
$select(%tracknumber%,
%album artist% ,
%album%[ - Disc %disc%] ,
[%date%][ ~ %genre%] ,
%codec% @ %bitrate%k [%codec_profile%]),
$select(%tracknumber%,
%album artist%[' • '%album%])
)


DeepDose
@ acedriver what config is that your showing above there?
Abita
http://img85.imageshack.us/img85/9655/foobar20007bh.jpg

im lovin it smile.gif
BaronLSN
QUOTE (acedriver @ May 13 2006, 09:41) *
@BaronLSN

you could add TOTALTRACKS tag for each album and use this

CODE
$if($greater(%totaltracks%,4),
$select(%tracknumber%,
%album artist% ,
%album%[ - Disc %disc%] ,
[%date%][ ~ %genre%] ,
%codec% @ %bitrate%k [%codec_profile%]),
$select(%tracknumber%,
%album artist%[' • '%album%])
)



But with incomplete albums, will that work? Is there any way for foobar to check the number of songs for that album name [or number of identical %album% entries] and do it from there?

Also - because I'm a newb - I'm not sure where to put this script for testing. The code I provided earlier was from Global, but I'm guessing this goes in the other section [columns]?

Thanks for your help smile.gif
acedriver
QUOTE (BaronLSN @ May 13 2006, 10:46) *
But with incomplete albums, will that work? Is there any way for foobar to check the number of songs for that album name [or number of identical %album% entries] and do it from there?

Also - because I'm a newb - I'm not sure where to put this script for testing. The code I provided earlier was from Global, but I'm guessing this goes in the other section [columns]?

Thanks for your help smile.gif

It would work.. but it won't display it properly.. have you try Navigator-Suite
BaronLSN
Not sure if Navigator is what I need - you see my "Singles" are actually incomplete albums or one off tracks, none of which are defined in any way distinct to other tracks [ie totaltracks=1 or anything]. So, say I have track X from Album Y, and it's number 3, then I'll end up with the date and genre where I'd like Artist + Album etc. to be. But it's the only track off Album Y that I have, so if there was some way to say "This playlist only has k number of songs from Album Y, so all tracks need Artist + Album" that'd be the ultimate solution. It's frustrating.

And Brumal, would you share your most recent trackinfo? Amazing biggrin.gif
acedriver
QUOTE (DeepDose @ May 13 2006, 09:51) *
@ acedriver what config is that your showing above there?

modded brumal's old config. I also modded his multi-color-schemes config.

http://acedriver.spymac.com/brumal.zip
Masahiko
QUOTE (zlebandit @ May 12 2006, 21:40) *
QUOTE (Masahiko @ May 12 2006, 13:48) *

QUOTE (Masahiko @ May 11 2006, 14:39) *

Mine, with a "classic" layout :



You can find it here



Tks Masahiko but it does not seem to be the same as on the picture ! smile.gif


Don't have any problem for loading may fcs, maybe you haven't the same layout so its normal
My layout :

CODE
Horizontal Splitter
+ Vertical Splitter
   - Playlist switcher
   - Track Info
   + Horizontal Splitter
       - Buttons
       - Playback Order
   - Album Art
   - Menu
   - Spectrum Analyser
+ Horizontal Splitter
   - Columns Playlist
shane 4 sure
Minor update.

kanak
QUOTE (shane 4 sure @ May 13 2006, 15:11) *
Minor update.



This is brilliant!

Amazing.
Lego
That's right
Shinsou
QUOTE (shane 4 sure @ May 13 2006, 11:11) *
Minor update.


would be much better with other VS/font/background color combination wink.gif
hagaki
where do you put the code for the playlist to arrange it like you have been doing? like your's ace
lextune
Sweet! I just configed my fooby with multiple layouts, the first screenshot is my regular layout, then with a click of the minimal button (top right, 2nd screenshot) I get the layout in the 3rd screeny biggrin.gif





Brainbug
@ shane 4 sure
cool stuff! what is the trick with that drop-shadow?
shane 4 sure
QUOTE (hagaki @ May 13 2006, 12:32) *
where do you put the code for the playlist to arrange it like you have been doing? like your's ace

Pretty simple mate, this is what I've got:
Playlist view -> Display Tab, put the following:

CODE
$transition(%tracknumber%,$rgb(196,196,196),$rgb(170,170,170))
$rgb()  
[%title%]  
$transition(%length%,$rgb(170,170,170),$rgb(196,196,196))


Alignment: Centre

I love keeping it simple as you see smile.gif

QUOTE (Brainbug @ May 13 2006, 13:05) *
@ shane 4 sure
cool stuff! what is the trick with that drop-shadow?

The trick is called Photoshop laugh.gif
But seriously, this is really simple as I just rearranged the original cover along with a transparent background to go along with the Visual Style I'm using.
I think a lot of my fellows fooby users here would like to have the possibility to use a background image instead of just plain "color" in the AlbumArt component. That would be terrific if one could combine AlbumArt with TrackInfo as far as I'm concerned.
edsche
QUOTE (lextune @ May 13 2006, 12:35) *
Sweet! I just configed my fooby with multiple layouts, the first screenshot is my regular layout, then with a click of the minimal button (top right, 2nd screenshot) I get the layout in the 3rd screeny biggrin.gif








how did you do that with this "minimal button" ?
lextune
Preferences/ColumnsUI/Layout

Create a new layout preset.

Then customize a button to:

Main Menu Item/View/Layout/the layout you created

(I named my Layout preset "Minimal", but you can call it whatever you want)

smile.gif



EDIT: to be more descriptive biggrin.gif
edsche
ah thank you lextune smile.gif
Yotsuya



On the left:
--------------
Album Art panel
Rearranged standard controls
Multiple Track Info panels
Multiple Browser panels

On the right:
-------------
Tweaked azrael playlist

Waiting for tabbed panel extension for 0.9.1. so I can tab the album art with ProjectM vis and the playlist with a shoutcast browser.
SpaceChief
QUOTE (lextune @ May 13 2006, 11:47) *
Preferences/ColumnsUI/Layout

Create a new layout preset.

Then customize a button to:

Main Menu Item/View/Layout/the layout you created

(I named my Layout preset "Minimal", but you can call it whatever you want)

smile.gif



EDIT: to be more descriptive biggrin.gif


Very cool lextune. I never realized the awesomeness of Foobar's ability to create multiple layouts.
acedriver
same old layout, different config

Mr-wyx
QUOTE (acedriver @ May 14 2006, 05:12) *
same old layout, different config


Can u please share what font u a using? Thx! wink.gif biggrin.gif
acedriver
QUOTE (Mr-wyx @ May 14 2006, 23:08) *
Can u please share what font u a using? Thx! wink.gif biggrin.gif

Frutiger Linotype, you have to search for it.
germanjulian
I use the default standard theme....

all I use foobar for is playing music and transcoding smile.gif
doesnt need to look good.
Mr-wyx
QUOTE (acedriver @ May 14 2006, 09:28) *
QUOTE (Mr-wyx @ May 14 2006, 23:08) *

Can u please share what font u a using? Thx! wink.gif biggrin.gif

Frutiger Linotype, you have to search for it.

w00t.gif wink.gif And what is yours track info panel config please?! unsure.gif
Gurney
QUOTE (Mr-wyx @ May 10 2006, 10:58) *
Thx m8!!! wink.gif It is great!!! biggrin.gif And can u please tell me is it your custom track info box? And what font u a using? Thx! rolleyes.gif



I second this wink.gif

Great work, Brumal !
acedriver
QUOTE (Mr-wyx @ May 15 2006, 00:33) *
w00t.gif wink.gif And what is yours track info panel config please?! unsure.gif

CODE
// title/artist:
$upper($if(%_trackinfo_notrack%,foobarffd9552000,$if2(%title%,%_filename%) [c0c0c0/ ffd955$meta_sep(artist,', ',' and ')]))
FRICSO
QUOTE (BaronLSN @ May 13 2006, 03:45) *
Not sure if Navigator is what I need - you see my "Singles" are actually incomplete albums or one off tracks, none of which are defined in any way distinct to other tracks [ie totaltracks=1 or anything]. So, say I have track X from Album Y, and it's number 3, then I'll end up with the date and genre where I'd like Artist + Album etc. to be. But it's the only track off Album Y that I have, so if there was some way to say "This playlist only has k number of songs from Album Y, so all tracks need Artist + Album" that'd be the ultimate solution. It's frustrating.


I think you've the same problem that I!!!

see my post:
QUOTE (FRICSO @ May 11 2006, 03:55) *
how I show ARTIST NAME :: ALBUM NAME (in my album info column) :: TRACK NAME (in my title and length column) when the song is separated of the album, or when the song's single???
like in this pic:


thanks!!!


I've created a topic about this: http://www.hydrogenaudio.org/forums/index....showtopic=43937
Mr. Happy
QUOTE (4nt1 @ May 8 2006, 07:11) *
Here is my latest edition smile.gif



KEWL!!!!
Care to share to entire thing??
Gapkiller
New Edition... biggrin.gif




Album list panel on autohide on the left!!
UObean
For those that have asked about downloading my foobar2000 directory, I've made it available here.



edit: The full directory rar has been removed.
krazy
@UObean
Please read the fb2k license agreement and remove the fb2k directory from your website, unless you have written permission from Peter.
UObean
QUOTE (krazy @ May 15 2006, 20:19) *
@UObean
Please read the fb2k license agreement and remove the fb2k directory from your website, unless you have written permission from Peter.


Yikes, will do.
BobsRevenge


Here is my foobar (the image might take a bit to load... photobucket seems to be slow...)

The browser stuff on the right can be hiden using a nigh impossible to hit left border to click on.

Anyone know how to fix that "N" with the weird o-thing that shows up next to the place in the track info that tells how many times you've listened to it?
lav-chan
The No thing means 'numero' (aka 'number'). Go into the track info settings and replace it with whatever you want. :/
BobsRevenge
I ended up writing my own track info script. I know almost nothing about scripts, so I'm pretty proud of myself.

edit: does anyone know how to make a panel that will rate the track for you? Like, some sort of drop down menu with 1-5 on it and when you select one it automatically retags itself?

That would make this whole rating thing much easier.
BigRobb




How do I make it so that there is a small image that is clickable?

by the way, its changed now, but this was my foobar at my most favorite smile.gif
BigRobb
whoops
vonmeth
BigRobb: When you upload to imageshack it gives you different codes to use. Copy the one that says a thumbnail for forums and simply paste that in. It automatically generates a thumbnail for you and the link to the larger image.


Here is my current config.

Anywho ...



And ya, stole the basic config from whoever posted it earlier, changed a few things and to who first created it, I give thanks once again!

Edit: Just changed the picture and got rid of something ugly (the stuff next to artist, album and year)
BigRobb
I use photobucket though, heh.

:\
BobsRevenge
BigRobb:
I created a second picture by uploading the same picture again and then using their resize feature to resize it to 25% of its original size. Then I used this code:
CODE
[url=http://img.photobucket.com/albums/v222/BobsRevenge/myfoo2.jpg]
[img]http://img.photobucket.com/albums/v222/BobsRevenge/4f327102.jpg[/img]
[/url]

the first image there is the original and the second one with the image tags around it is the thumbnail

moderation: Added linebreaks in code block to preserve forum layout.
vonmeth
QUOTE (BigRobb @ May 16 2006, 20:29) *
I use photobucket though, heh.

:\



Well, just use imageshack for these images. You do not have to sign up and it does all the image resizing and coding for you. Can't ask for much more *shrug*.
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-2009 Invision Power Services, Inc.