Welcome Guest ( Log In | Register )

Outline · [ Standard ] · Linear+

Guide foobar2000 customization topic, post screenshot here.

views
     
junster
post May 3 2006, 02:22 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


QUOTE(overlord_666 @ Mar 2 2006, 01:04 AM)
Uh...better check the first post of this topic mate, the whole explanation is there.
http://forum.lowyat.net/index.php?showtopic=56316

BTW, my foobar. It had been a long time since I update mine.... sweat.gif
user posted image
*
hey, can share ur fcs??
junster
post May 3 2006, 03:22 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


QUOTE(fariz @ May 3 2006, 02:42 PM)
http://forum.lowyat.net/index.php?showtopi...dpost&p=2179216

change the color under Global and move the columns

17 colors to choose from..
*
thanks for ur help...and this is my foobar

my foobar whistling.gif

and i wanna know how to put the "no album art" thing?

This post has been edited by junster: May 3 2006, 04:40 PM
junster
post May 3 2006, 07:04 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


thanks...and do u know how to add the animation main title bar??no matter how i cant make it work.
junster
post May 3 2006, 08:24 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


that is for playlist...but im looking for animation for the main title bar...

This post has been edited by junster: May 3 2006, 08:27 PM
junster
post May 3 2006, 09:09 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


erm..just wonder can make the alum art panel to slide shows??

This post has been edited by junster: May 3 2006, 09:18 PM
junster
post May 4 2006, 06:07 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


can we put 2 png file as no album art??
junster
post May 5 2006, 05:23 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


why my customise buttons become very small when i change it???how to make it bigger??
junster
post May 5 2006, 09:34 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


QUOTE(fariz @ May 5 2006, 05:41 PM)
a screenshot would certainly help alot.
*
user posted image

here u go sifu!! blush.gif how to fix this problem??

This post has been edited by fariz: May 5 2006, 09:58 PM
junster
post May 5 2006, 10:13 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


i got it already..thanks... rclxm9.gif

This post has been edited by junster: May 5 2006, 10:17 PM
junster
post May 25 2006, 02:05 AM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


this is my track info..hope u like it.

Code
// Original code by necropimp, then modified by AstreaEdge, and again by KockRoach
// Habla likes things his way, and modified it more.
// Best viewed with vert pad 10, hor pad 8, line space 3, Calibri 8pt bold font, black background
// lots of info needs lots of space 8)

// !!!!BEGIN USER CONFIGURATION!!!!

// Show Artist? (1 = show, 0 = don't show)
$puts(arts,1)

// Show Album?
$puts(albs,1)

// Show Title?
$puts(tils,1)

// Info Heading Color e.g. "Title:"
$puts(head,c9c9c9)

// Info Color, e.g. "Black Dog"
$puts(info,FFFFFF)

// Info Annotation Color (e.g. "kbps" is the annotation)
$puts(anno,FFFFFF)

// Separator
$puts(text2,FFFFFF)
$puts(text1,0000FF)
$puts(fadeend,000000)
$puts(seplen,53)
$puts(sepchar,'-')

////////////////////////////////////////////////
////!!!END USER CONFIGURATION!!////
//////////////////////////////////////////////

// Day Conversion
$puts(day,$substr(%last_played%,9,10))
$if(%last_played%,
$if($strcmp($left($get(day),1),0),$puts(day,$right($get(day),1))))
$if($strcmp($get(day),11),$puts(xx,th),
$if($strcmp($get(day),12),$puts(xx,th),
$if($strcmp($get(day),13),$puts(xx,th),
$if($strcmp($right($get(day),1),1),$puts(xx,st),
$if($strcmp($right($get(day),1),2),$puts(xx,nd),
$if($strcmp($right($get(day),1),3),$puts(xx,rd),
$puts(xx,th)))))))

// Month Conversion
$puts(month,$substr(%last_played%,6,7))
$puts(month_name,$select($get(month),
Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec))

// Year Conversion
$puts(year,$substr(%last_played%,1,4))

// Time Conversion
$puts(hour,$substr(%last_played%,12,13))
$puts(min,$substr(%last_played%,14,16))
$puts(sec,$substr(%last_played%,17,19))

// 24 Hour to 12 Hour Conversion
$if($strcmp($left($get(hour),1),0),$puts(hour1,$right($get(hour),1)))
$if($strcmp($left($get(hour),1),1),$puts(hour1,$sub($get(hour),12)))
$if($strcmp($left($get(hour),1),2),$puts(hour1,$sub($get(hour),12)))
$if($strcmp($get(hour),00),$puts(hour1,12))
$if($strcmp($get(hour),10),$puts(hour1,10))
$if($strcmp($get(hour),11),$puts(hour1,11))
$if($strcmp($get(hour),12),$puts(hour1,12))

// AM/PM Conversion
$if($strcmp($get(hour),00),$puts(yy,am))
$if($strcmp($get(hour),10),$puts(yy,am))
$if($strcmp($get(hour),11),$puts(yy,am))
$if($strcmp($get(hour),12),$puts(yy,pm))
$if($strcmp($get(hour),24),$puts(yy,am))
$if($strcmp($left($get(hour),1),0),$puts(yy,am))
$if($strcmp($left($get(hour),1),1),$puts(yy,pm))
$if($strcmp($left($get(hour),1),2),$puts(yy,pm))

// Date Format
$puts(time_of_year,$get(month_name) $get(day)$get(xx)',' $get(year))

// Time Format
$puts(time_of_day,$get(hour1)$get(min)$get(sec) $get(yy))

// SONG INFO SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)S o n g I n f o $get(text1)']'$char(10)

$if($strcmp(1,$get(arts)),$if(%artist%,$get(head)Artist: $get(info)%artist%$char(10),),)
$if($strcmp(1,$get(albs)),$if(%album%,$get(head)Album: $get(info)$cut(%album%,37)
$ifgreater($len(%album%),37,'...',)$char(10),),)
$if($strcmp(1,$get(tils)),$if(%title%,$get(head)Title: $if(%title%,$get(info)$cut(%title%,45)
$ifgreater($len(%title%),45,'...',))$char(10),$get(info)%_filename%$char(10)),)
$if(%tracknumber%,$get(head)Track #: $get(info)%tracknumber%$char(10),)
$if(%date%,$get(head)Date: $get(info)%date%$char(10),)
$if(%genre%,$get(head)Genre: $get(info)%genre%$char(10),)

// TECH INFO SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)T e c h I n f o $get(text1)']'$char(10)

$get(head)Length: $get(info)$if(%_isplaying%,%_time_elapsed%$get(anno)$if(%_length%, / %_length%,)$if(%_time_elapsed%, / $muldiv(%_time_elapsed_seconds%,100,%_length_seconds%)'%')$if(%_length%, / -%_time_remaining%),%_length%)$char(10)
$get(head)Quality: $if(%__codec%, $get(info)%__codec%) $get(info)
$if2(%__bitrate_dynamic%,%__bitrate%) $get(anno)Kb/s $if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr),VBR,CBR))
$char(10)
$if(%__lame_version%,$get(head)Encoder: $get(info)$left(%__lame_version%,4) $right(%__lame_version%,4) [$upper(%__lame_profile%)]$char(10),)
$if(%__flac_vendor%,$get(head)Encoder: $get(info)$if($stricmp(%__flac_vendor%,reference libFLAC 1.1.2 20050205),FLAC 1.1.2 -8)$char(10),)
$if(%__mpc_profile%,$get(head)MPC Profile: $get(info)%__mpc_profile%$char(10),)
$get(head)Compression: $get(info)$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '('$get(info)$muldiv(%__bitrate%,100,1411)$get(anno)'% of original quality)'$char(10)
$get(head)Channel Mode: $get(info)$if($stricmp($codec(),MP3),$get(space2)$caps(%__mp3_stereo_mode%),
$if(%__channels%,$ifgreater(%__channels%,1,Stereo,Mono),'?'))$char(10)
$if(%__bitspersample%,$get(head)Bitdepth: $get(info)%__bitspersample% bits/sample$char(10),)
$if(%__samplerate%,$get(head)Samplerate: $get(info)$div(%__samplerate%,1000).$substr(%__samplerate%,3,3) KHz $char(10))
$if(%_filesize%,$get(head)Filesize: $get(info)
$div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),100,1048576),2),2) $get(anno)'MB'$char(10),)

$if(%last_played%,
// PLAY STATS SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)P l a y S t a t s $get(text1)']'$char(10),)

$if(%play_count%,$get(head)Played $get(info)%play_count% times total$char(10),)
$if(%last_played%,$get(head)Last played on $get(info)$get(time_of_year) at $get(time_of_day)$char(10),)
$get(head)Focus: $get(info)$if(%_trackinfo_nowplaying%,$if(%_ispaused%,Current Song '0000FF[Paused]',Current Song),Follow Cursor$if(%_ispaused%,0000FF' [Paused]'))$char(10)
$if(%_isplaying%,$get(head)o$progress(%_time_elapsed_seconds%, %_time_total_seconds%,72,$get(info)'::',$get(text1)'-')$get(head)o)


This post has been edited by QuackSilver: May 28 2006, 04:54 PM
junster
post Jul 30 2006, 06:32 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


just wonder is the "toaster pop up" for v9 out yet??
junster
post Jan 3 2008, 03:42 AM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


QUOTE(caspersky @ Jan 3 2008, 12:35 AM)
i am also using this configuration. To have your image shown, you just put the image in the same folder of the songs and name it 'cover.jpg' and it will be shown correctly.
*
since you're using fotr config as well..i wanna ask how to add the foo_uie_vis_channel_spectrum.dll??
junster
post Jan 3 2008, 11:44 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


is there a way to change the "lyrics" section to a "visualizations" section??


user posted image

junster
post Jan 4 2008, 01:30 AM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


QUOTE(arafat @ Jan 4 2008, 01:09 AM)
hi
i'm foobar newbie
how to make my foobar looks cool like this
http://www.mytheme.net/zboard/view.php?id=skin&no=3737#3737?
i'm using latest foobar..
*
download the config???
junster
post Jan 5 2008, 02:46 AM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


QUOTE(almostthere @ Jan 4 2008, 12:39 PM)
You'd need to figure out the layout codings under the SCPL section of the main code. I believe you'd need to substitute loading of lyrics loading .dll file with athe channell spectrum vis .dll file. I can't say exactly how as I'm still figuring out too
*
lol..i did some of my own experiments like using the brumal's config for the visualization tab..but its still not working.. sad.gif

so i hope to hear from u soon...hehe.. icon_rolleyes.gif
junster
post Jan 20 2008, 04:25 PM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


can someone upload samurize component for me??i cant find it anywhere.. sad.gif
junster
post May 11 2008, 01:35 AM

Casual
***
Junior Member
396 posts

Joined: Dec 2004
From: A Pile of Junks


need help guys!
im using the fofr config and a weird thing just happen to my foobar..
i tried load from my button file and still cant get it back..tried redownload and load a new .fcb file(same buttons) still cannot..and i tried reinstall foobar also cant solve it..

so now im hoping u sifus out there pls help me!!! cry.gif

user posted image

 

Change to:
| Lo-Fi Version
0.0383sec    0.26    7 queries    GZIP Disabled
Time is now: 29th November 2025 - 03:00 AM