A Flash Developer Resource Site

Results 1 to 10 of 10

Thread: MP3 Stream Player Audio release1

  1. #1
    Senior Member lopez1_de's Avatar
    Join Date
    Oct 2001
    Location
    Germany
    Posts
    299

    MP3 Stream Player Audio release1

    Hi.

    It's time to give you the first release of my player. It's not completed yet. And it's not good documentated. But feel free to take a look and use this stuff.
    Watch the readme.txt for installation. Should be easy to use this.
    You need a webserver with PHP4 or higher installed for the ID3v2 tag features.

    Please post questions, bugs and ideas here. Thanks.


    Bye

    -----------------
    another thread about this player
    Attached Files Attached Files
    Last edited by lopez1_de; 08-25-2004 at 02:53 PM.
    visit my homepage -> ejected.de

  2. #2
    Senior Member lopez1_de's Avatar
    Join Date
    Oct 2001
    Location
    Germany
    Posts
    299
    no reactions? you don't like it?

    then I don't release any further versions.
    visit my homepage -> ejected.de

  3. #3
    KoolMoves Moderator blanius's Avatar
    Join Date
    Jul 2001
    Location
    Atlanta GA
    Posts
    5,244
    Sorry just haven't had time to really look it over carefully. You've done great work here though that is clear.

  4. #4
    Senior Member cyber reaper's Avatar
    Join Date
    Apr 2004
    Location
    israel
    Posts
    272
    great job !!! realy , i can imagine how complicated it must have been for you to script it...
    althogh you made a great work i think i can help you make it more user friendly by turning the SWF file to an EXE file (i know it will be successful cause ive checked it on my pc with your release) so if you want me to try doing that let me know and ill E mail it to you
    ok....what ?

  5. #5
    Senior Member lopez1_de's Avatar
    Join Date
    Oct 2001
    Location
    Germany
    Posts
    299
    Originally posted by cyber reaper
    great job !!! realy , i can imagine how complicated it must have been for you to script it...
    althogh you made a great work i think i can help you make it more user friendly by turning the SWF file to an EXE file (i know it will be successful cause ive checked it on my pc with your release) so if you want me to try doing that let me know and ill E mail it to you
    Hi. This sounds good. But on a local system we don't have the id3 tag feature. No time will shown in the scroll bar. Only the text "LOCAL FILE".

    Is there a way to provide a local php server with the player which use less memory. Where do I get a good php server?

    I'm thinking about this. In the next days or weeks I will enhance the player. Then we can create an executable. good idea.

    Greatings
    visit my homepage -> ejected.de

  6. #6
    Junior Member
    Join Date
    Apr 2005
    Location
    Cleveland, Ohio
    Posts
    9

    Help needed with music player

    Hi!

    This player seems to be exactly what I need, except that I cannot figure out how to make the mp3 files load automatically. I don't care about the music starting automatically, I just want the files to load. I can manually add the files and they play fine, but I just can't seem to figure out why I cannot get the playlist to load. My test page I am trying this at is http://www.toredownhouse.com/mp3stest.html

    Since I have incorporated the player object into my page, I am not using an index02.html page. The relevant part of my page's code is:

    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://active.macromedia.com/flash6/cabs/swflash.cab#version=6,0,0,0"
    id="player" width=275 height=270>
    <param name=movie value="player.swf?config=config02.xml">
    <param name=quality value=autohigh>
    <param name=bgcolor value=#B4C4D4>
    <param name=wmode value=window>
    <param name=menu value=false>
    <embed src="player.swf?config=config02.xml" quality=autohigh bgcolor=#B4C4D4
    width=275 height=270 wmode=window menu=false type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer">
    </embed></object>


    The config02.xml code is:

    <?xml version="1.0" ?>
    <config>
    <entrie>
    <base_url>http://www.toredownhouse.com/player</base_url>
    </entrie>
    <entrie>
    <load_playlist>playlist01</load_playlist>
    </entrie>
    <entrie>
    <volume>100</volume>
    </entrie>
    <entrie>
    <repeat>false</repeat>
    </entrie>
    <entrie>
    <edit>true</edit>
    </entrie>
    </config>


    And my playlist01.xml is:

    <?xml version="1.0" ?>
    <playlist>
    <track>
    <url>http://www.toredownhouse.com/lie.mp3</url>
    </track>
    <track>
    <url>http://www.toredownhouse.com/ching.mp3</url>
    </track>
    <track>
    <url>http://www.toredownhouse.com/lifehard.mp3</url>
    </track>
    <track>
    <url>http://www.toredownhouse.com/rain.mp3</url>
    </track>
    <track>
    <url>http://www.toredownhouse.com/laugh.mp3</url>
    </track>
    <track>
    <url>http://www.toredownhouse.com/stoned.mp3</url>
    </track>
    </playlist>



    My html file (containing the player object) resides in the main directory, and the playlist01.xml file is in the playlists directory. I have tried placing the config01.xml file in both the main directory and the playlists directory, but it makes no difference.

    I can't help but think I am missing something very basic here, but I have tired everything I can think of and have spent quite a few hours on it, getting no where. I'd really appreciate any help or suggestions.

    Thanks,

    Laura

  7. #7
    Senior Member lopez1_de's Avatar
    Join Date
    Oct 2001
    Location
    Germany
    Posts
    299
    Quote Originally Posted by Ahroo
    The config02.xml code is:

    <?xml version="1.0" ?>
    <config>
    <entrie>
    <base_url>http://www.toredownhouse.com/player</base_url>
    </entrie>
    <entrie>
    <load_playlist>playlist01</load_playlist>
    </entrie>
    <entrie>
    <volume>100</volume>
    </entrie>
    <entrie>
    <repeat>false</repeat>
    </entrie>
    <entrie>
    <edit>true</edit>
    </entrie>
    </config>
    The base URL is the full path to the player. I think you must use http://www.toredownhouse.com instead of http://www.toredownhouse.com/player. Because you DON't have a seperate folder called "player" where the player.swf is located. And don't forget to create a folder called playlists.
    visit my homepage -> ejected.de

  8. #8
    Junior Member
    Join Date
    Apr 2005
    Location
    Cleveland, Ohio
    Posts
    9
    Duh - I knew it would be a simple and obvious solution! Thanks! It's working fine now - almost. It does exactly what I want it to do in Internet Explorer, Opera and Mozilla Firefox, but for some reason, in Netscape (I have version 7.1) it will only play song 6. That one begins automatically, and even if I try to change it to song 1-5, it jumps ahead to number 6. Very perplexing. Any thoughts about that?

    Once again, thank you for the great player and the help! Both are greatly appreciated.

    Laura

  9. #9
    Senior Member kusco's Avatar
    Join Date
    Nov 2001
    Posts
    681
    Very nice!!
    Interface looks great.
    Cheers,
    kusco
    (3DFA Support Team)

  10. #10
    Senior Member lopez1_de's Avatar
    Join Date
    Oct 2001
    Location
    Germany
    Posts
    299
    bump =)
    visit my homepage -> ejected.de

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center