lyte Share Posted January 16, 2007 i changed the group display a smidge, so here's the new info: $imageabs(,,\images\LE5\relunaorange2.png,) $imageabs(4,11,\images\LE5\arrow.png,) $alignabs(270,8,%_width%,20,left,) $font(Calibri,12,glow- glowexpand-0 glowalpha-15,40-40-40) $replace($replace(%date%,20,''),19,'') $alignabs(28,3,%_width%,20,left,top) $font(Calibri,10,bold glow- glowexpand-0 glowalpha-15,40-40-40) $if(%album artist%,%album artist%,%artist%) $font(Calibri,10,glow- glowexpand-0 glowalpha-15,40-40-40) $alignabs(28,13,%_width%,20,left,bottom) [%album%] album title won't show up now, only artist name. any ideas? Link to post Share on other sites
Bunio Share Posted January 16, 2007 lyte Maybe change the font in section $font(Calibri,10,glow- glowexpand-0 glowalpha-15,40-40-40) $alignabs(28,13,%_width%,20,left,bottom) [%album%] Link to post Share on other sites
MrFuji Share Posted January 17, 2007 New one... inspired by moglenstar's minimal config! Modded schluepfer's config (see hydrogenaudio) and spex' simpler config :) Link to post Share on other sites
Twisted Chaz Share Posted January 18, 2007 (edited) Hey I just downloaded foobar2000 cause I saw how great everyone can make it look. Is there a starting tutorial on how to customise it? Or is it better to trail through all of the threads in this topic. Thanks. EDIT: No worries, I looked through most of the posts. found what I need :) I'm sure there will be many more questions from me in this thread. And can I just say, u guys are pro. Edited January 18, 2007 by Twisted Chaz Link to post Share on other sites
em3 Share Posted January 18, 2007 Config available here: http://www.lunaelement.net/forum/viewtopic.php?p=99 Hope you like it. :D Link to post Share on other sites
Primie.uk Share Posted January 18, 2007 Really really nice em3! Made my own mod of yours already lol, nothing serious though! Only problem i have is, it doesn't show the full track title, i looked through the code but couldn't find nothing, any ideas? Here's mine so far. Link to post Share on other sites
em3 Share Posted January 18, 2007 ^Maybe there is something wrong with the tagging on your mp3. I've inserted code to cut the text if it's too long (60% of the total trackinfo width) but I don't think that is the issue. I tested a lot to make it work correctly. Link to post Share on other sites
Jamushroom Veteran Share Posted January 18, 2007 It works here ok as well. Great job once again em3, I really love this version :D Link to post Share on other sites
Primie.uk Share Posted January 18, 2007 ^Maybe there is something wrong with the tagging on your mp3. I've inserted code to cut the text if it's too long (60% of the total trackinfo width) but I don't think that is the issue. I tested a lot to make it work correctly. Nothing wrong with MP3 tagging, it's all done correctly :( It's really buggin me too! I've tried to change the value of totaltrack info width but no luck :( Thanks anyways. Link to post Share on other sites
em3 Share Posted January 18, 2007 Nothing wrong with MP3 tagging, it's all done correctly :( It's really buggin me too! I've tried to change the value of totaltrack info width but no luck :( Thanks anyways. Try replacing the beginning of the global code with this. If it doesn't help it's most likely the track trimming that mess up, which I'm rewriting a little as we speak. // Global $puts(tracktitle,%artist% - %title%) Link to post Share on other sites
Primie.uk Share Posted January 18, 2007 Try replacing the beginning of the global code with this. If it doesn't help it's most likely the track trimming that mess up, which I'm rewriting a little as we speak. // Global $puts(tracktitle,%artist% - %title%) No luck i'm affraid :( Link to post Share on other sites
em3 Share Posted January 18, 2007 ^Ok try this. I've rewritten the text trimming code. Replace all // Global code with the code below. // Global $puts(tracktitle, $if($meta_test(artist),%artist%,$substr(%_filename%,1,$sub($strstr(%_filename%, - ),1))) $if($or($meta_test(artist,title),$strstr(%_filename%, - )), - ) $if($or($meta_test(title),$not($strstr(%_filename%, - ))), %title%,$substr(%_filename%,$add($strstr(%_filename%, - ),3),$len(%_filename%)))) $puts(freespace,$div($sub(%_width%,38,$calcwidth($get(tracktitle)),$calcwidth(%album%)),2)) $if(%album%, $ifgreater($get(freespace),14, $puts(areaWidth1,$add($calcwidth($get(tracktitle)),$get(freespace))) $puts(areaWidth2,$add($calcwidth(%album%),$get(freespace))), $puts(areaWidth1,$sub($muldiv(%_width%,60,100),30)) $puts(areaWidth2,$sub($muldiv(%_width%,40,100),10))) ,$puts(areaWidth1,$sub(%_width%,36))) $puts(charWidth1,$div($calcwidth($get(tracktitle)),$len($get(tracktitle)))) $puts(charWidth2,$div($calcwidth(%album%),$len(%album%))) Link to post Share on other sites
MrFuji Share Posted January 18, 2007 Hope you like it. And now for something completely different :shifty: Any plans for releasing your Zelda Remix... I'm quite interested ^^ @topic: minor changes here: Playlist Dropdown + a few more buttons are above columns playlist, appear on hover! em3's rating stars btw ;) Link to post Share on other sites
Primie.uk Share Posted January 18, 2007 ^Ok try this. I've rewritten the text trimming code. Replace all // Global code with the code below. // Global $puts(tracktitle, $if($meta_test(artist),%artist%,$substr(%_filename%,1,$sub($strstr(%_filename%, - ),1))) $if($or($meta_test(artist,title),$strstr(%_filename%, - )), - ) $if($or($meta_test(title),$not($strstr(%_filename%, - ))), %title%,$substr(%_filename%,$add($strstr(%_filename%, - ),3),$len(%_filename%)))) $puts(freespace,$div($sub(%_width%,38,$calcwidth($get(tracktitle)),$calcwidth(%album%)),2)) $if(%album%, $ifgreater($get(freespace),14, $puts(areaWidth1,$add($calcwidth($get(tracktitle)),$get(freespace))) $puts(areaWidth2,$add($calcwidth(%album%),$get(freespace))), $puts(areaWidth1,$sub($muldiv(%_width%,60,100),30)) $puts(areaWidth2,$sub($muldiv(%_width%,40,100),10))) ,$puts(areaWidth1,$sub(%_width%,36))) $puts(charWidth1,$div($calcwidth($get(tracktitle)),$len($get(tracktitle)))) $puts(charWidth2,$div($calcwidth(%album%),$len(%album%))) Tried it, it's just the same, it seems to be cutting the last word of each track title no matter how long or short the track title is? Apprciate all your hard work though! Primie.uk Link to post Share on other sites
blurp Share Posted January 18, 2007 em3: Why doesnt the goldbar show up for me? I copied everything from .zip-file. Link to post Share on other sites
moglenstar Share Posted January 18, 2007 @Primie: Looks as if it's using ID3v1 tags, they have a maximum length limit.. If your music contains both ID3v1 and v2, try removing the v1 tags. This may also occur if you have APE tags present (used by replay gain programs, sometimes) You can change in the foobar preferences whether to use ID3v1 or v2 by default when tagging files (check under the advanced section). Link to post Share on other sites
Primie.uk Share Posted January 18, 2007 @Primie:Looks as if it's using ID3v1 tags, they have a maximum length limit.. If your music contains both ID3v1 and v2, try removing the v1 tags. This may also occur if you have APE tags present (used by replay gain programs, sometimes) You can change in the foobar preferences whether to use ID3v1 or v2 by default when tagging files (check under the advanced section). It's already on ID3v2! lol. Link to post Share on other sites
Jamushroom Veteran Share Posted January 18, 2007 @moglenstar: Just what I thought that it could be the ID3 version problem :p Link to post Share on other sites
Oompa Share Posted January 19, 2007 Really really nice em3! Made my own mod of yours already lol, nothing serious though!Only problem i have is, it doesn't show the full track title, i looked through the code but couldn't find nothing, any ideas? Here's mine so far. How do you show the total number of tracks? em3: Looks great, if I hadn't just set up a config I really liked then I'd switch... Here's mine, the code is all on hydrogenaudio. [Click to enlarge] Link to post Share on other sites
Primie.uk Share Posted January 19, 2007 How do you show the total number of tracks? %_itemcount% Link to post Share on other sites
blurp Share Posted January 19, 2007 Does anyone know how to fix the problem with songtitles overlapping the track length? Link to post Share on other sites
MrFuji Share Posted January 19, 2007 Does anyone know how to fix the problem with songtitles overlapping the track length? If you use $alignabs(X,Y,w,h,H,V)%title% text should be cropped correctly Hope that works! From foobar wiki: X & Y Specify the position of the bounding rectangle (can be a negative value). (W)idth & (H)eight Specify the bounding rectangle for the text. H & V Specify the alignment as above. edit: sorry for that big codebox, can't get it smaller.... Link to post Share on other sites
Jamushroom Veteran Share Posted January 19, 2007 Really really nice em3! Made my own mod of yours already lol, nothing serious though!Only problem i have is, it doesn't show the full track title, i looked through the code but couldn't find nothing, any ideas? Here's mine so far. Where can I find that Single ColumnUI config? Link to post Share on other sites
Primie.uk Share Posted January 19, 2007 Where can I find that Single ColumnUI config? It's 1 of Spex04's Config i got a few pages back inside this thread, not sure which page it is though sorry! Link to post Share on other sites
Recommended Posts