title
Products            Buy            Support Forum            Professional            About            Codec Central
 

Show poweramp info on LCD-Display

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Lt.Worf
    • Sep 2005
    • 33

    Show poweramp info on LCD-Display

    Hello,
    I want to know if its posible to read out poweramp info (playing CD title, tracktitle, bitrate, ...) to show on a LCD-Display.

    MfG
  • donny
    dBpoweramp Guru
    • Oct 2002
    • 761

    #2
    Re: Show poweramp info on LCD-Display

    It is very posible to get these data. Now depending on your programing skills and the software you use I could tell you more.

    so if you could be more precise what you use and what exactly do you want to do...

    Comment

    • neilthecellist
      dBpoweramp Guru
      • Dec 2004
      • 1288

      #3
      Re: Show poweramp info on LCD-Display

      Do you mean LCD display on a portable player, or on your computer?

      Hm... Probably best to answer donny's question first.

      Comment

      • LtData
        dBpoweramp Guru
        • May 2004
        • 8288

        #4
        Re: Show poweramp info on LCD-Display

        I'm guessing an LCD display on his computer that can used, at least with other players, to display the current artist/title of the song playing and the time elapsed or other information.

        Comment

        • Lt.Worf
          • Sep 2005
          • 33

          #5
          Re: Show poweramp info on LCD-Display

          I have a LCD-Display connected to USB-Port (http://shop.includ.de/product_info.p...c633e29e247fa2).
          The original LCD-Software is written with Delphi and I want to write myself some code in VB6.

          Can you give me help, please ?
          Last edited by Lt.Worf; 05-01-2006, 05:28 PM.

          Comment

          • Lt.Worf
            • Sep 2005
            • 33

            #6
            Re: Show poweramp info on LCD-Display

            Is there any help please ? :cry:

            Comment

            • Lt.Worf
              • Sep 2005
              • 33

              #7
              Re: Show poweramp info on LCD-Display

              mmmH ... ob keiner mehr mit mihr reden will :nospeak:

              Comment

              • donny
                dBpoweramp Guru
                • Oct 2002
                • 761

                #8
                Re: Show poweramp info on LCD-Display

                sorry I was away for a while...

                it can be done. I have an app that is in delphi (qm also) that was made to display info in a similar maner...

                I can make an app that will write the info to a file when the song is changed, would that be enough? something like artistEOLtrackEOLalbum ? then you forwad the data with your own code.

                I guess that would also suit the people requesting for instant messageing....

                again sorry it took me so long to reply... :blush:

                Comment

                • Lt.Worf
                  • Sep 2005
                  • 33

                  #9
                  Re: Show poweramp info on LCD-Display

                  Originally posted by donny
                  I can make an app that will write the info to a file when the song is changed, would that be enough? ... then you forwad the data with your own code.
                  Thats ok, but I would prefer something without writing to disk. But if there is no other way its better than nothing :blush:

                  Originally posted by donny
                  something like artistEOLtrackEOLalbum ?
                  If possible + length (min/sec), frequency (kHz), bitrate (kbps) and Mono/Stereo, please :rolleyes:

                  Originally posted by donny
                  again sorry it took me so long to reply... :blush:
                  No pronlem and thanks for help

                  Comment

                  • donny
                    dBpoweramp Guru
                    • Oct 2002
                    • 761

                    #10
                    Re: Show poweramp info on LCD-Display

                    not necessary to write to disk, it's just easy that way and you can do with the data whatever you want... I can send you source files for delphi how to obtain the data, and if you have source or some other way to connect to the LCD it can be done directly...

                    I looked at the link you sent, but being I don't speak german, I didn't see if there are any sources or apps for connecting...

                    Comment

                    • Lt.Worf
                      • Sep 2005
                      • 33

                      #11
                      Re: Show poweramp info on LCD-Display

                      The scource code at the website is being developed at the moment and will come out soon ...
                      ... but if you can mail me some source for delphi it would be perfekt and I can give to the LCD-developers and try to write some code for my own.

                      Thanks.

                      Comment

                      • donny
                        dBpoweramp Guru
                        • Oct 2002
                        • 761

                        #12
                        Re: Show poweramp info on LCD-Display

                        OK,
                        will do so soon

                        Comment

                        • donny
                          dBpoweramp Guru
                          • Oct 2002
                          • 761

                          #13
                          Re: Show poweramp info on LCD-Display

                          about delphi code
                          first you need imported dbpowramp libraries... don't worry it's not a problem you just lokate the dBScripting.dll and then import it into delphi... I think the option is on the type menu or somthing like that...
                          I also think that there is a way to directly use the COM objects but it doesn't change things much...

                          I have this file if you need it, but as said it is easy to make one...

                          so you need the line

                          Code:
                          uses
                            DBPOWERAMPLib_TLB;
                          and now you have access to the TMultiPlayer and TAmp class. You will be using the TMultiPlayer like this:

                          Code:
                          var
                               dap: TMultiPlayer;
                          and init it as :
                          Code:
                          dap:= tmultiplayer.create(Form1);
                          now you can access the fields easy as :

                          Code:
                            Label1.Caption := dap.artist + ' - ' + dap.Track;
                            Label2.caption := inttostr( dap.position div 1000 div 60)+
                                ':'+inttostr( dap.position div 1000 mod 60);
                            txt1.caption := txt1.caption + ' / '
                                  + inttostr( dap.length div 1000 div 60)
                                  +':'+inttostr( dap.length div 1000 mod 60);
                          so the first label will show i.e. "Brian May - Rollin' Over" and the second "0:52 / 4:36" (position is in miliseconds....)

                          if you want to set thing up then you can use and change dap.volume, dap.position, dap.fileplaying and some others...

                          if you need more help or anything just shoot

                          oh and if their interface has a COM support than you can of course use the VB code and acces the LCD command from VB scripts (though I guess an app would be wiser than script)

                          Comment

                          • Lt.Worf
                            • Sep 2005
                            • 33

                            #14
                            Re: Show poweramp info on LCD-Display

                            Thanks very much for your help.
                            I will try to write some code ...

                            P.S. It is possible to get album, frequency, bitrate and stereo-mode too ?
                            Changing Volume and skip forward or backward would be nice too ...

                            P.S. It never get email notofications from this forum, is there something wrong ?
                            Last edited by Lt.Worf; 05-21-2006, 07:14 PM.

                            Comment

                            • LtData
                              dBpoweramp Guru
                              • May 2004
                              • 8288

                              #15
                              Re: Show poweramp info on LCD-Display

                              E-mail notifications of new posts and pop-up notifications of private messages doesn't work. I don't know why, but it doesn't.

                              Comment

                              Working...

                              ]]>