Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Home stereo display (Read 270128 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Home stereo display

Reply #125
absolutely  amazin! working like a charm (after some wierd stuff )
thank you so much!!
keep up the great work

Home stereo display

Reply #126
VERSION 1.4 IS IN THE AIR(see the first post)
I've made some effort to overcome the problem of playing time display,that was experienced by users
with high resolution displays.I wasn't able to test it (since i'm running 1024x768).
I'm waiting for your comments.Enjoy     
Favourite artist:CD-R
Favourite album:700MB

Home stereo display

Reply #127
Awesome work!!  Thank you

using at 1920x1200


Home stereo display

Reply #128
Thank you for this great piece of code!
Looks really nice, and runs fine!

Just one question, could you upload the 1.4 archive to something else than sendspace.com?
I can't download the files, always getting an "no download slots available".

Home stereo display

Reply #129
Nah, now that I tweaked almost everything to fit my display....   
Just kidding. I'll test this as soon as I get home and thanks again Russel777 for this code and for all the support you provide your users. 

Thanks also to SW!NG for helping me out to isolate my alignment problem in high resolution displays and providing me with tips.

Home stereo display

Reply #130
I've added a link to this from the trackinfo wiki:
Wiki
The details aren't too substantial at the moment.

It is under the new Code Examples section.

By doing it you had immortalized this topic and the people who wrote here.
(We're all gonna be in history books,YES!) Thanks.                     
Favourite artist:CD-R
Favourite album:700MB

Home stereo display

Reply #131
another "bug" found, when the played time or total time is over 60 mins, the displayed time is incorrect.

Home stereo display

Reply #132
I'm sorry to bother you again.
But could you also upload the "Stuff4.rar" to rapidshare?

Home stereo display

Reply #133
another "bug" found, when the played time or total time is over 60 mins, the displayed time is incorrect.

It's not a bug,but well known thing.It wasn't planned to handle tracks over 60 minutes.Next version
will be capable of handling tracks up to 100 minutes with no change in appearance.But thank you for reporting
a problematic features,cos it the only way to make it better.
Favourite artist:CD-R
Favourite album:700MB

Home stereo display

Reply #134
Great stuff you have coded there which fits very well in my black foobar style

One thing: Wouldnt It be better to have the progessbar somewhere near the time. Lets say on the left or right side of the elapsed time  - since its some kind of time information

Home stereo display

Reply #135
just a personal mod-wish:
is it possible to make the last-played row as a progressbar, and the playcount as the volumedisplay?

i tried, but i'm not in this whole code thingy :/

i tried the progressbar instead of last-played thing, here is my result:

[a href=\"http://imageshack.us\" target=\"_blank\"]

code: replaced a lot of "//Rating FP Play count Compression//", so i paste my whole snippet from that "chapter"
Code: [Select]
////////////////////////////Rating FP Play count Compression//////////////////////////////////////////////////////
$if(%rating%,$puts(rating,%rating%),
$puts(fix,$div($cwb_datediff(%cwb_systemdatetime%,%first_played%),$get(decreaserange)))
$puts(rating,$sub($add(%play_count%,%play_counter%),$get(fix))))
$if($greater($get(rating),5),$puts(rating,5))
$if($greater(0,$get(rating)),$puts(rating,0))
$alignabs(400,$div(%_height%,5),%_width%,%_height%,,)
$font(wingdings,12,,250-250-250)
#LINEHEIGHT,3#$char(32)$char(10)
$get(active)$repeat($char(171),$get(rating))
$get(back)$repeat($char(171),$sub(5,$get(rating)))
#LINEHEIGHT,13#$char(32)$char(10)
$font(7 segment,10,,250-250-250)
$progress(%playback_time_seconds%,%length_seconds%,10,|,-)
$alignabs(466,$div(%_height%,5),%_width%,%_height%,,)
#LINEHEIGHT,16#$char(32)$char(10)
$puts(percent,$num($muldiv(%_time_elapsed_seconds%,100,%_time_total_seconds%),3))
$if($stricmp($substr($get(percent),1,1),0),$puts(back1,$get(back))
$puts(percent,$char(32)$substr($get(percent),2,3))
,$puts(back1,$get(active)))
$alignabs(476,$sub($div(%_height%,5),2),%_width%,%_height%,,)
#LINEHEIGHT,17#$char(32)$char(10)
$font(7 Segment,10,,250-250-250)
$if($and(%isplaying%,%_time_total%),
$get(active)$get(percent),$get(active)$char(32)0)
$alignabs(476,$sub($div(%_height%,5),1),%_width%,%_height%,,)
#LINEHEIGHT,17#$char(32)$char(10)
$font(Lucida sans unicode,8,,250-250-250)$get(active)'('$repeat($char(32),6)'%'
$alignabs(509,$sub($div(%_height%,5),1),%_width%,%_height%,,)
#LINEHEIGHT,17#$char(32)$char(10)
$font(Lucida sans unicode,8,,250-250-250)$get(active)$repeat($char(32),0)')'

i kicked the compression display, to avoid confusion with the progress percentage behind the progress bar

the progressbar 'chapter' in the config can be deleted in this case, no bugs found so far,
but i'm no coding expert!!!!


perhaps if someone can make the stars flashing, like a progress bar, but every second the next one, and at the end, from the first star again? (omg, my english is so bad  sry) just as a little thing for the eyes

Home stereo display

Reply #136
I'm sorry to bother you again.
But could you also upload the "Stuff4.rar" to rapidshare?


Mirror added for both archives.
Favourite artist:CD-R
Favourite album:700MB

Home stereo display

Reply #137
There is still some tweaking to be done (v. 1.4). Thanks for the code:



a question: what line(s) take care of the alignment of the horizontal line in the middle of the tracknumber and elapsed time display (and also the : symbol)?


Home stereo display

Reply #138
There is still some tweaking to be done (v. 1.4). Thanks for the code:



a question: what line(s) take care of the alignment of the horizontal line in the middle of the tracknumber and elapsed time display (and also the : symbol)?



1st:No line taking care of it,it's defined by the font
2nd:See
Code: [Select]
$alignabs($add(141,$get(f2),$mul($get(s),1)),$div(%_height%,5),%_width%,%_height%,,)
$get(active)$get(2):
under "Time sequence"
Favourite artist:CD-R
Favourite album:700MB

Home stereo display

Reply #139
Found the problem of the odd horizontal line. It is the font size. For some reason 7 segment with a font size of 24 (default in your code) screws up the display for me. Changing to 25 or 23 solves the problem.

I knew it would be something stupid as this.....

Thanks again for the code and support.

Home stereo display

Reply #140
How do I use the media source (removable, local drive, streaming)?
I have one CD-ROM (h:) one DVD-RAM (i:) and one usb external drive (e:). If  I change the removable line to this: $puts(removable,hie) whenever I play a file from the usb drive (e:) it shows up as local drive..... is this intended?

thanks


Home stereo display

Reply #142
Brilliant! I'll be downloading this soon.

Home stereo display

Reply #143
How do I use the media source (removable, local drive, streaming)?
I have one CD-ROM (h:) one DVD-RAM (i:) and one usb external drive (e:). If  I change the removable line to this: $puts(removable,hie) whenever I play a file from the usb drive (e:) it shows up as local drive..... is this intended?

thanks

No thats a bug,that i knew of but forgot to fix.Wait for "security update".Thanks for reminder.
Favourite artist:CD-R
Favourite album:700MB

Home stereo display

Reply #144
Quote
How do I use the media source (removable, local drive, streaming)?
I have one CD-ROM (h:) one DVD-RAM (i:) and one usb external drive (e:). If I change the removable line to this: $puts(removable,hie) whenever I play a file from the usb drive (e:) it shows up as local drive..... is this intended?

thanks


have you tried using upper case letters?

Home stereo display

Reply #145
@ktr, thx for the progress bar replacemant code..

I don't use playcount, so your code is a perfect for me..


that's why i made it, was the same reason for me

hope with further updates it doesnt get too hard to update this

thanks for using btw


Home stereo display

Reply #147
This looks great, but could you upload the files to another mirror?

Rapidshare never works for me, because my internet is through a proxy, and sendspace has reached its limit.

Thanks in advance