Help - Search - Members - Calendar
Full Version: [BRAINDEAD] image quoting spree
Hydrogenaudio Forums > Misc. > Recycle Bin
fla
QUOTE(leokennis @ Jul 9 2007, 23:37) *

IPB Image


I need that. Really. smile.gif
leokennis
QUOTE(fla @ Jul 11 2007, 00:52) *

QUOTE(leokennis @ Jul 9 2007, 23:37) *

IPB Image


I need that. Really. smile.gif



Ok, it's really easy:

1-Create a new Track Info Mod (now included in Panels UI I believe)
2-Put this code in it:
CODE
// Global

// 1.0: Path to album art
$puts(path.albumart,$replace(%path%,%filename_ext%,folder.*))

// 1.1: Additional info
// addinfo.show: delete the '1' to disable additional info
// addinfo.time: determines how long addinfo is shown
$puts(addinfo.show,1)
$puts(addinfo.time,30)

// 1.2: Positions
// pos.horizon: y-position of the grey horizon gradient
// pos.artx: if changed, further changes will be necessary for text positioning
// pos.arty: change position of album art relative to horizon line
$puts(pos.horizon,$muldiv(%_height%,4,7))
$puts(pos.artx,$sub($div(%_width%,2),580))
$puts(pos.arty,$sub($get(pos.horizon),430))
$puts(pos.bgx,$sub($div(%_width%,2),640))

// 1.3: Fonts
$puts(font.track,$font(DINPro-Medium,50,,255-255-255))
$puts(font.artist,$font(DINPro-Medium,36,,230-230-230))
$puts(font.album,$font(DINPro-Medium,30,,200-200-200))
$puts(font.year,$font(DINPro-Medium,20,,80-80-80))
$puts(font.codec,$font(DINPro-Medium,20,,249-0-144))
$puts(font.trackno,$font(DINPro-Medium,160,,30-30-30))
$puts(font.time,$font(DINPro-Medium,30,,30-30-30))

// 1.4: Progress Bar
$puts(bar.height,4)
$puts(bar.color,249-0-144)



// Background

// 2.0: Background Image And Positioning
$imageabs($sub($get(pos.bgx),),$sub($get(pos.horizon),512),/images/htpc3/background.png,)



// PerTrack

// 3.0: Cover Art And Positioning
$imageabs2(618,618,0,0,618,618,$sub($get(pos.artx),59),$sub($get(pos.arty),59),C:\Users\Leo\AppData\Roaming\foobar2000\images\htpc3/cover_back.png,)
$imageabs2(500,500,0,0,500,500,$add(0,$get(pos.artx)),$add(0,$get(pos.arty)),C:\Users\Leo\AppData\Roaming\foobar2000\images\htpc3/noart.png,)
$imageabs2(500,500,0,0,500,500,$add(0,$get(pos.artx)),$add(0,$get(pos.arty)),$get(path.albumart),NOKEEPASPECT)

// 3.1: Bottom Bar
$drawrect(0,$sub(%_height%,200),%_width%,200,brushcolor-0-0-0 pencolor-null)



// PerSecond

// 4.0: Peakmeter Panel
$if(%isplaying%,
$panel(Ident,Peakmeter,100,$sub(%_height%,83),$sub(%_width%,200),55,)
,)

// 4.1: Pause Overlay
$if(%ispaused%,
$drawrect($add($get(pos.artx),0),$add($get(pos.arty),0),500,500,pencolor-0-0-0 alpha-140)
$alignabs($add($get(pos.artx),0),$add($get(pos.arty),0),500,500,center,middle)$font(Webdings,160,,255-255-255)';'
)


// 4.2: Track Info Display
$if(%isplaying%,
$alignabs($add($get(pos.artx),550),$add($get(pos.arty),0),$sub(%_width%,$add($get(pos.artx),500)),100,left,top)
$get(font.track)
$iflonger(%title%,18,$cut(%title%,18)…,%title%)

$alignabs($add($get(pos.artx),550),$add($get(pos.arty),83),$sub(%_width%,$add($get(pos.artx),500)),100,left,top)
$get(font.artist)
$iflonger(%artist%,24,$cut(%artist%,24)…,%artist%)

$alignabs($add($get(pos.artx),550),$add($get(pos.arty),145),$sub(%_width%,$add($get(pos.artx),550)),100,left,top)
$get(font.album)
%album%
$get(font.year)
' ''('%date%')'

$alignabs(0,$sub(%_height%,200),$sub(%_width%,10),100,right,top)
$get(font.codec)
$if($info(tool),$info(tool),%codec%) $iflonger(%codec_profile%,3,%codec_profile%,%bitrate%kbit/s)

$alignabs($add($get(pos.artx),550),$sub(%_height%,440),$sub(%_width%,$add($get(pos.artx),550)),800,right,top)
$get(font.trackno)
$ifgreater(%tracknumber%,9,%tracknumber%,$right(%tracknumber%,1))

$alignabs($sub(%_width%,258),$sub(%_height%,80),250,150,right,top)
$get(font.time)
[%_time_remaining%]

$alignabs(5,$sub(%_height%,80),250,150,left,top)
$get(font.time)
[%_time_elapsed%]
,)

// 4.3: Progress Bar
$ifgreater($muldiv(%playback_time_seconds%,%_width%,%length_seconds%),0,
$drawrect(0,$sub(%_height%,202),$muldiv(%playback_time_seconds%,%_width%,%length_seconds%),$get(bar.height),pencolor-null brushcolor-$get(bar.color))
,)

3-Point to the following images in the code (so replace my "hard coded" ones, of course you can put the images wherever you want smile.gif :
No-Art images.
Background for the cover art.
The diagonal-stripes background.

The font I can't give you; its the DIN font which I paid $60,- for...so I don't think I can just upload it somewhere smile.gif Bit I'm sure you can find other nice fonts or...erm get it some other way wink.gif

Good luck.
fla
QUOTE(leokennis @ Jul 11 2007, 00:09) *

QUOTE(fla @ Jul 11 2007, 00:52) *

QUOTE(leokennis @ Jul 9 2007, 23:37) *

IPB Image


I need that. Really. smile.gif



Ok, it's really easy:

1-Create a new Track Info Mod (now included in Panels UI I believe)
2-Put this code in it:
CODE
// Global

// 1.0: Path to album art
$puts(path.albumart,$replace(%path%,%filename_ext%,folder.*))

// 1.1: Additional info
// addinfo.show: delete the '1' to disable additional info
// addinfo.time: determines how long addinfo is shown
$puts(addinfo.show,1)
$puts(addinfo.time,30)

// 1.2: Positions
// pos.horizon: y-position of the grey horizon gradient
// pos.artx: if changed, further changes will be necessary for text positioning
// pos.arty: change position of album art relative to horizon line
$puts(pos.horizon,$muldiv(%_height%,4,7))
$puts(pos.artx,$sub($div(%_width%,2),580))
$puts(pos.arty,$sub($get(pos.horizon),430))
$puts(pos.bgx,$sub($div(%_width%,2),640))

// 1.3: Fonts
$puts(font.track,$font(DINPro-Medium,50,,255-255-255))
$puts(font.artist,$font(DINPro-Medium,36,,230-230-230))
$puts(font.album,$font(DINPro-Medium,30,,200-200-200))
$puts(font.year,$font(DINPro-Medium,20,,80-80-80))
$puts(font.codec,$font(DINPro-Medium,20,,249-0-144))
$puts(font.trackno,$font(DINPro-Medium,160,,30-30-30))
$puts(font.time,$font(DINPro-Medium,30,,30-30-30))

// 1.4: Progress Bar
$puts(bar.height,4)
$puts(bar.color,249-0-144)



// Background

// 2.0: Background Image And Positioning
$imageabs($sub($get(pos.bgx),),$sub($get(pos.horizon),512),/images/htpc3/background.png,)



// PerTrack

// 3.0: Cover Art And Positioning
$imageabs2(618,618,0,0,618,618,$sub($get(pos.artx),59),$sub($get(pos.arty),59),C:\Users\Leo\AppData\Roaming\foobar2000\images\htpc3/cover_back.png,)
$imageabs2(500,500,0,0,500,500,$add(0,$get(pos.artx)),$add(0,$get(pos.arty)),C:\Users\Leo\AppData\Roaming\foobar2000\images\htpc3/noart.png,)
$imageabs2(500,500,0,0,500,500,$add(0,$get(pos.artx)),$add(0,$get(pos.arty)),$get(path.albumart),NOKEEPASPECT)

// 3.1: Bottom Bar
$drawrect(0,$sub(%_height%,200),%_width%,200,brushcolor-0-0-0 pencolor-null)



// PerSecond

// 4.0: Peakmeter Panel
$if(%isplaying%,
$panel(Ident,Peakmeter,100,$sub(%_height%,83),$sub(%_width%,200),55,)
,)

// 4.1: Pause Overlay
$if(%ispaused%,
$drawrect($add($get(pos.artx),0),$add($get(pos.arty),0),500,500,pencolor-0-0-0 alpha-140)
$alignabs($add($get(pos.artx),0),$add($get(pos.arty),0),500,500,center,middle)$font(Webdings,160,,255-255-255)';'
)


// 4.2: Track Info Display
$if(%isplaying%,
$alignabs($add($get(pos.artx),550),$add($get(pos.arty),0),$sub(%_width%,$add($get(pos.artx),500)),100,left,top)
$get(font.track)
$iflonger(%title%,18,$cut(%title%,18)…,%title%)

$alignabs($add($get(pos.artx),550),$add($get(pos.arty),83),$sub(%_width%,$add($get(pos.artx),500)),100,left,top)
$get(font.artist)
$iflonger(%artist%,24,$cut(%artist%,24)…,%artist%)

$alignabs($add($get(pos.artx),550),$add($get(pos.arty),145),$sub(%_width%,$add($get(pos.artx),550)),100,left,top)
$get(font.album)
%album%
$get(font.year)
' ''('%date%')'

$alignabs(0,$sub(%_height%,200),$sub(%_width%,10),100,right,top)
$get(font.codec)
$if($info(tool),$info(tool),%codec%) $iflonger(%codec_profile%,3,%codec_profile%,%bitrate%kbit/s)

$alignabs($add($get(pos.artx),550),$sub(%_height%,440),$sub(%_width%,$add($get(pos.artx),550)),800,right,top)
$get(font.trackno)
$ifgreater(%tracknumber%,9,%tracknumber%,$right(%tracknumber%,1))

$alignabs($sub(%_width%,258),$sub(%_height%,80),250,150,right,top)
$get(font.time)
[%_time_remaining%]

$alignabs(5,$sub(%_height%,80),250,150,left,top)
$get(font.time)
[%_time_elapsed%]
,)

// 4.3: Progress Bar
$ifgreater($muldiv(%playback_time_seconds%,%_width%,%length_seconds%),0,
$drawrect(0,$sub(%_height%,202),$muldiv(%playback_time_seconds%,%_width%,%length_seconds%),$get(bar.height),pencolor-null brushcolor-$get(bar.color))
,)

3-Point to the following images in the code (so replace my "hard coded" ones, of course you can put the images wherever you want smile.gif :
No-Art images.
Background for the cover art.
The diagonal-stripes background.

The font I can't give you; its the DIN font which I paid $60,- for...so I don't think I can just upload it somewhere smile.gif Bit I'm sure you can find other nice fonts or...erm get it some other way wink.gif

Good luck.


Thank you very much. Where do I have to put the fonts I want to use? foobar directory?
leokennis
QUOTE(fla @ Jul 11 2007, 02:26) *

QUOTE(leokennis @ Jul 11 2007, 00:09) *

QUOTE(fla @ Jul 11 2007, 00:52) *

QUOTE(leokennis @ Jul 9 2007, 23:37) *

IPB Image


I need that. Really. smile.gif



Ok, it's really easy:

1-Create a new Track Info Mod (now included in Panels UI I believe)
2-Put this code in it:
CODE
// Global

// 1.0: Path to album art
$puts(path.albumart,$replace(%path%,%filename_ext%,folder.*))

// 1.1: Additional info
// addinfo.show: delete the '1' to disable additional info
// addinfo.time: determines how long addinfo is shown
$puts(addinfo.show,1)
$puts(addinfo.time,30)

// 1.2: Positions
// pos.horizon: y-position of the grey horizon gradient
// pos.artx: if changed, further changes will be necessary for text positioning
// pos.arty: change position of album art relative to horizon line
$puts(pos.horizon,$muldiv(%_height%,4,7))
$puts(pos.artx,$sub($div(%_width%,2),580))
$puts(pos.arty,$sub($get(pos.horizon),430))
$puts(pos.bgx,$sub($div(%_width%,2),640))

// 1.3: Fonts
$puts(font.track,$font(DINPro-Medium,50,,255-255-255))
$puts(font.artist,$font(DINPro-Medium,36,,230-230-230))
$puts(font.album,$font(DINPro-Medium,30,,200-200-200))
$puts(font.year,$font(DINPro-Medium,20,,80-80-80))
$puts(font.codec,$font(DINPro-Medium,20,,249-0-144))
$puts(font.trackno,$font(DINPro-Medium,160,,30-30-30))
$puts(font.time,$font(DINPro-Medium,30,,30-30-30))

// 1.4: Progress Bar
$puts(bar.height,4)
$puts(bar.color,249-0-144)



// Background

// 2.0: Background Image And Positioning
$imageabs($sub($get(pos.bgx),),$sub($get(pos.horizon),512),/images/htpc3/background.png,)



// PerTrack

// 3.0: Cover Art And Positioning
$imageabs2(618,618,0,0,618,618,$sub($get(pos.artx),59),$sub($get(pos.arty),59),C:\Users\Leo\AppData\Roaming\foobar2000\images\htpc3/cover_back.png,)
$imageabs2(500,500,0,0,500,500,$add(0,$get(pos.artx)),$add(0,$get(pos.arty)),C:\Users\Leo\AppData\Roaming\foobar2000\images\htpc3/noart.png,)
$imageabs2(500,500,0,0,500,500,$add(0,$get(pos.artx)),$add(0,$get(pos.arty)),$get(path.albumart),NOKEEPASPECT)

// 3.1: Bottom Bar
$drawrect(0,$sub(%_height%,200),%_width%,200,brushcolor-0-0-0 pencolor-null)



// PerSecond

// 4.0: Peakmeter Panel
$if(%isplaying%,
$panel(Ident,Peakmeter,100,$sub(%_height%,83),$sub(%_width%,200),55,)
,)

// 4.1: Pause Overlay
$if(%ispaused%,
$drawrect($add($get(pos.artx),0),$add($get(pos.arty),0),500,500,pencolor-0-0-0 alpha-140)
$alignabs($add($get(pos.artx),0),$add($get(pos.arty),0),500,500,center,middle)$font(Webdings,160,,255-255-255)';'
)


// 4.2: Track Info Display
$if(%isplaying%,
$alignabs($add($get(pos.artx),550),$add($get(pos.arty),0),$sub(%_width%,$add($get(pos.artx),500)),100,left,top)
$get(font.track)
$iflonger(%title%,18,$cut(%title%,18)…,%title%)

$alignabs($add($get(pos.artx),550),$add($get(pos.arty),83),$sub(%_width%,$add($get(pos.artx),500)),100,left,top)
$get(font.artist)
$iflonger(%artist%,24,$cut(%artist%,24)…,%artist%)

$alignabs($add($get(pos.artx),550),$add($get(pos.arty),145),$sub(%_width%,$add($get(pos.artx),550)),100,left,top)
$get(font.album)
%album%
$get(font.year)
' ''('%date%')'

$alignabs(0,$sub(%_height%,200),$sub(%_width%,10),100,right,top)
$get(font.codec)
$if($info(tool),$info(tool),%codec%) $iflonger(%codec_profile%,3,%codec_profile%,%bitrate%kbit/s)

$alignabs($add($get(pos.artx),550),$sub(%_height%,440),$sub(%_width%,$add($get(pos.artx),550)),800,right,top)
$get(font.trackno)
$ifgreater(%tracknumber%,9,%tracknumber%,$right(%tracknumber%,1))

$alignabs($sub(%_width%,258),$sub(%_height%,80),250,150,right,top)
$get(font.time)
[%_time_remaining%]

$alignabs(5,$sub(%_height%,80),250,150,left,top)
$get(font.time)
[%_time_elapsed%]
,)

// 4.3: Progress Bar
$ifgreater($muldiv(%playback_time_seconds%,%_width%,%length_seconds%),0,
$drawrect(0,$sub(%_height%,202),$muldiv(%playback_time_seconds%,%_width%,%length_seconds%),$get(bar.height),pencolor-null brushcolor-$get(bar.color))
,)

3-Point to the following images in the code (so replace my "hard coded" ones, of course you can put the images wherever you want smile.gif :
No-Art images.
Background for the cover art.
The diagonal-stripes background.

The font I can't give you; its the DIN font which I paid $60,- for...so I don't think I can just upload it somewhere smile.gif Bit I'm sure you can find other nice fonts or...erm get it some other way wink.gif

Good luck.


Thank you very much. Where do I have to put the fonts I want to use? foobar directory?

No, in C:/WINDOWS/Fonts

Then you'll have to point in them in the "$puts(font.track,$font(DINPro-Medium,50,,255-255-255))" etc.
ortin
QUOTE(khz @ Jul 10 2007, 00:45) *
IPB Image

Mini mode:
IPB Image




It looks great! Could you share your config?

cheatz
QUOTE(ortin @ Jul 12 2007, 15:16) *

QUOTE(khz @ Jul 10 2007, 00:45) *
IPB Image

Mini mode:
IPB Image




It looks great! Could you share your config?

x2.

It's exactly what i need.
dawid
QUOTE(ortin @ Jul 12 2007, 15:16) *

QUOTE(khz @ Jul 10 2007, 00:45) *
IPB Image

Mini mode:
IPB Image




It looks great! Could you share your config?


It's some kind of dawxxx666's foo AVA mod. See this topic:
http://www.neowin.net/forum/index.php?showtopic=566958
cheatz
I see... still, khz, please share. Interested in the vinyl presets and such.
wy1975
QUOTE(khz @ Jul 10 2007, 05:45) *

IPB Image

Mini mode:
IPB Image


very nice. please share.
gramarye
QUOTE(sinfony @ Oct 2 2007, 15:52) *

I got impatient waiting for somebody else to do a glassy config, so I modded jclim's Elegance config to suit my needs:

IPB Image
IPB Image
IPB Image
IPB Image

Since I know pretty much nil about configuring PanelsUI, this is all done with some very simple hacks. Still, it looks okay.


This looks marvelous!
Nii2
QUOTE(sinfony @ Oct 2 2007, 16:52) *

I got impatient waiting for somebody else to do a glassy config, so I modded jclim's Elegance config to suit my needs:

IPB Image
IPB Image
IPB Image
IPB Image

Since I know pretty much nil about configuring PanelsUI, this is all done with some very simple hacks. Still, it looks okay.


Hi,
congratulations, I love your config. Could you share it please?
gramarye
QUOTE(Nii2 @ Oct 3 2007, 03:46) *

QUOTE(sinfony @ Oct 2 2007, 16:52) *

I got impatient waiting for somebody else to do a glassy config, so I modded jclim's Elegance config to suit my needs:

IPB Image
IPB Image
IPB Image
IPB Image

Since I know pretty much nil about configuring PanelsUI, this is all done with some very simple hacks. Still, it looks okay.


Hi,
congratulations, I love your config. Could you share it please?


IAWTP. please biggrin.gif
kipcambodia
QUOTE(Mr. Pacman @ Oct 4 2007, 05:02) *

Here is my mod of brilliant Brett's config, mixed with some veeery nice slightly modded Brumal's, Fofr's and Lttma's elements. I want it simple and functional with the exact info and options you can see in the screenshot. Thank you all here for sharing your works and especially Brumal, Brett, Fofr, and the guy who made Lttma config.It isn't the most beautiful config, but it's almost exactly like i want it..

IPB Image



I like it... very nice!!
Falstaff
QUOTE(Mr. Pacman @ Oct 4 2007, 12:02) *

Here is my mod of brilliant Brett's config, mixed with some veeery nice slightly modded Brumal's, Fofr's and Lttma's elements. I want it simple and functional with the exact info and options you can see in the screenshot. Thank you all here for sharing your works and especially Brumal, Brett, Fofr, and the guy who made Lttma config.It isn't the most beautiful config, but it's almost exactly like i want it..

IPB Image


good mod cool.gif

Br3tt
YoPen
QUOTE(Mr. Pacman @ Oct 4 2007, 05:02) *

Here is my mod of brilliant Brett's config, mixed with some veeery nice slightly modded Brumal's, Fofr's and Lttma's elements. I want it simple and functional with the exact info and options you can see in the screenshot. Thank you all here for sharing your works and especially Brumal, Brett, Fofr, and the guy who made Lttma config.It isn't the most beautiful config, but it's almost exactly like i want it..

IPB Image
Exelent configuration!
Can You share?

Audio N00b
QUOTE(Mr. Pacman @ Oct 4 2007, 06:02) *

Here is my mod of brilliant Brett's config, mixed with some veeery nice slightly modded Brumal's, Fofr's and Lttma's elements. I want it simple and functional with the exact info and options you can see in the screenshot. Thank you all here for sharing your works and especially Brumal, Brett, Fofr, and the guy who made Lttma config.It isn't the most beautiful config, but it's almost exactly like i want it..

IPB Image

What a great config...
Is it impossible for you to share it? smile.gif
gramarye
QUOTE(sinfony @ Oct 2 2007, 15:52) *

I got impatient waiting for somebody else to do a glassy config, so I modded jclim's Elegance config to suit my needs:

IPB Image
IPB Image
IPB Image
IPB Image

Since I know pretty much nil about configuring PanelsUI, this is all done with some very simple hacks. Still, it looks okay.



anyone successfully achieved this transparent/glass config on their foobar yet?
oMikR0n
QUOTE(Mr. Pacman @ Nov 12 2007, 17:18) *

Some improvements to my mod (maybe the final for the configuration i need). Thanks again to the original creators...i'm going to miss panels UI now that we have the new foobar. They could have implement panels UI as a second default UI... sad.gif

IPB Image

Can you give me your theme please?
pnG
QUOTE(Mr. Pacman @ Nov 12 2007, 17:18) *

Some improvements to my mod (maybe the final for the configuration i need). Thanks again to the original creators...i'm going to miss panels UI now that we have the new foobar. They could have implement panels UI as a second default UI... sad.gif

IPB Image


those play pause buttons are dope!
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.