Flex xml mp3 player

How to make an mp3 player with xml playlist. just like
streaming player with volume control and autoplay. Thanks and more
power.

are you trying to use your xml data before loading is
complete? is there a security issue? does your player work if you
hardcode one of the mp3s?

Similar Messages

  • Searching for xml mp3 player that supports categories

    I have been searching high and low for a configurable (I am
    not a developer) flash xml-driven audio player/jukebox that can
    handle menus.
    For example, category:
    rock --> deftones --> track1..
    ambient --> brian eno --> track1..
    Anyone seen anything like this?

    Thank you guys so much! Sorry, Creative - I'm sure you'll want to delete this thread advertising a competitor's product... but if only you'd put all your great features into one player, then you'd be perfect!
    Last chance, Creative... want my business? All you gotta do is add a simple calendar and contacts feature to the ZenTouch and my money is yours!

  • MP3 Player, XML, Cover and Link

    Hi,
    i wonder if i can easily creat an MP3 player for my website
    with flex. I need a simple player that shows the cover, band and
    title of the song that is played. the player should start by random
    if the user enters the site. the user is able to skip forward and
    backward and to stop playing. all data comes from an XML file.
    i want the view of the player to be changed if i want to.
    size, color.
    is this easy to do with flex?
    cheers
    denis

    Hi,
    Yes, it is. Please find a sample at the URL below. You will
    find a sample application called Podcast Player. You will find more
    samples.
    http://www.adobe.com/go/as3examples
    Hope this helps.

  • MP3 Player - Is it realistic with Flex???

    Hi every Flex fans and Flex experts,
    After a week of fluctuation from happy to angry, I conclude
    that there is not a lot of resource to build a nice-and-easy MP3
    player in a Flex application. Yes and no! I mean, there is some
    basic solutions, such as the idea from Viper Creation (
    http://www.vipercreations.com/tutorials/Adobe%20Flex/29.html).
    But when you look at all those SWF available from Flashkit.com or
    whatever the web site is - in case of independant flash developer -
    it seems that there is a lack concerning parameters when it is time
    to use the SWF at the full advantage. What I mean by that is most
    of those super Flashy MP3 Player - working with a playlist in XML -
    are passing a lot of parameters to setup the style of the player.
    In Flex, we can use the component SWFLoader and indicate the Source
    but when you try to play to much with the parameters (everything
    after the "?" and split with "&"), the system does not like it
    and you cannot compile!
    I been looking and looking since there is not a lot of
    documentation at this time to try to find a way to play with
    parameters but without a lot of succes.
    If anybody have hint to help me, please do not hesitate.
    Thank youm

    Any music and videos purchased on iTunes will not work on any other player other than iPods and iPhones as well as your computer. Sony MP3 players will not play music and videos purchased in iTunes because of the digital rights management included in every purchase.
    You can burn the music to disc. Have a great day.

  • Need help embedding a mp3 player swf with xml playlist

    Im a noob to Flash (started tuesday, haha) and so far everything is coming along just fine, but i need to put music in the swf. I have a button set up that slides a swf mp3 player in from the side but i dont know how to make the playlist work with it.
    The player is from this site:
    http://www.bezzmedia.com/swfspot/samples/flash8/Mp3_Player_with_XML_Playlist
    Using the xml playlist with html is simple enough, but im not sure how to use it with Flash Catalyst. Is there an easy way to do this?
    My original plan was to have a text list of the songs with a play button next to each one, then when you click on the play button it would set the state of any other songs to Stopped so you can just pick what song to play and if another song was playing it would stop. Im not sure how to do this either (like i said, i started learning this week), so i just tried embedding someone else's (ugly) mp3 player.
    Anyway, if anyone knows a relatively easy way to have a playlist in my swf please let me know. Thanks!

    If I understand you correctly, you've imported a SWF into Catalyst using Import Artwork on the File menu. When your app runs, you want to pass that swf a parameter that tells it what URL to read a data file from. The SWF is not one that you've created, rather, you got it from some web site.
    This is not something that you can do in Catalyst. However it should be possible to do in Flash Builder. I found an article discussing several ways to do it, at http://www.actionscript.org/forums/showthread.php3?t=175951. One idea is the following code snippet
    <fx:Script>
        <![CDATA[
        import flash.events.*;
        private function setVars(event):void
            event.target.content.yyyyyy = "zzzzzz";
        ]]>
    </fx:Script>
    <mx:Image source="xxxxx" complete="setVars(event)" />
    where "xxxxx" is the path of the SWF (you can put it somewhere in your Flash Builder project, or reference it via an URL), and yyyyy is the name of the parameter that the SWF expects, and zzzzzz is the path to the data file. The <Image> tag is what Catalyst created when you imported the SWF. (btw.the Image and SWFLoader tags are almost identical).
    I hope this gives you enough info to make progress.

  • Telling my flash mp3 player to get its song list from an xml file

    Hello,
    What do I need to put in my code to tell my mp3 player to grab its songs from a folder on my server via an xml doc I outputted from my sql server? (the mp3 player is also on the server).
    Thanks in advance! 
    Here's my code thus far:
    Heres my code:
    import flash.events.MouseEvent;
    import flash.media.Sound;
    import flash.net.URLRequest;
    import flash.media.SoundChannel;
    import fl.events.SliderEvent;
    var myMusic:Sound = new Sound();
    var soundFile:URLRequest = new URLRequest("lpwfte.mp3");
    var channel:SoundChannel = new SoundChannel();
    var sTransform:SoundTransform = new SoundTransform();
    var myTimer:Timer = new Timer(100);
    var songPosition:Number = 0;
    var myContext:SoundLoaderContext = new SoundLoaderContext(5000);
    myMusic.load(soundFile, myContext);
    myTimer.addEventListener(TimerEvent.TIMER, updateTime);
    buttonPlay.addEventListener(MouseEvent.CLICK, playMusic);
    btnStop.addEventListener(MouseEvent.CLICK, StopMusic);
    sldVolume.addEventListener(SliderEvent.CHANGE, ChangeVolume);
    myMusic.addEventListener(Event.COMPLETE, getSongLength);
    btnPause.addEventListener(MouseEvent.CLICK, pauseMusic);
    function pauseMusic(evt:MouseEvent):void
    songPosition = channel.position;
    channel.stop();
    function convertTime(millis:Number):String
    var Minutes:Number = ( millis % (1000*60*60)) / (1000 * 60);
    var Seconds:Number = ((millis % (1000*60*60)) % (1000 * 60)) /1000;
    if(Minutes < 10)
      var displayMinutes:String = "0" + Math.floor(Minutes);
    }else
      var displayMinutes:String = Math.floor(Minutes).toString();
    if(Seconds < 10)
      var displaySeconds:String = "0" + Math.floor(Seconds);
    }else
      var displaySeconds:String = Math.floor(Seconds).toString();
    return displayMinutes + ":" + displaySeconds;
    //return (Math.floor(Minutes) + ":" + Math.floor(Seconds));
    function updateTime(evt:TimerEvent):void
    lblSongTime.text = convertTime(channel.position);
    function getSongLength(evt:Event):void
    lblSongTotalTime.text = convertTime(myMusic.length);
    lblSongName.text = myMusic.id3.songName;
    lblSongArtist.text = myMusic.id3.artist;
    lblSongYear.text = myMusic.id3.year;
    function ChangeVolume(evt:SliderEvent):void
    sTransform.volume = sldVolume.value;
    channel.soundTransform = sTransform;
    function StopMusic(evt:MouseEvent):void
    channel.stop();
    songPosition = 0;
    function playMusic(evt:MouseEvent):void
    channel = myMusic.play(songPosition);
    myTimer.start();

    Search Google for a tutorial using terms like "AS3 XML tutorial".  ANy one of them should show you the code you need to parse the xml data into variables you can use in your code for your mp3 URLRequest value.

  • Flex 4.6 mobile mp3 player....create progressBar

    how to create progressBar for mp3 player in flex 4.6 mobile???
    help me please!!!!

    consider this scenario:
    1. user click a button and advances to the next view.
    2. here clicks a textinput so it focuses and soft keyboard appears
    3. user click back key on his phone - soft keyboard retracts (no backkeypressed event caught)
    4. textinput still has the focus border around it (why?) and user clicks back key again - application goes in the background for a couple of seconds and closes itself.
    I attached the .fxp for the test project
    http://dl.dropbox.com/u/4318878/TestBackKey.fxp

  • Flashvars, loaderinfo for mp3 player with xml

    ok, I am using flash cs5, am pretty new to as3, and I've been trying for 3 days to figure this out, as of yet have not been able to.
    I have built a music community website, obviously members can sign up for an account, and upload mp3 files to their accounts.
    now I'll explain in as much detail as I can.
    Once registration is complete, the php script creates a folder in the members directory on my server with their unique id, then when they go and upload an mp3, it uploads it to their folder and automatically creates a playlist.xml file for the song(s)
    so, I have a prebuilt flash mp3 player that I got from developphp.com, his as3 code calls for a static directory for the audio and xml, now since the flash player will live in the root, and the xml and audio will live in the members/$id folders, I am told to use flashvars and loaderinfo.parameters to do what I need, and that is to load the xml and mp3 files into the player for the profile that is being viewed at that moment, so lets look at what I've put into the html object and embed.
    lets use profile #7
    <param name="movie" value="flplayer.swf?<?php print"$id/playlist.xml" ?>">
                <embed src="flplayer.swf?<?php print "$id/playlist.xml" ?>"> (please tell me if I have done this incorrectly)
    now if we go to the profile.php?id=7 page, thius is what the page source looks like:
    <param name="movie" value="flplayer.swf?7/playlist.xml">
                <embed src="flplayer.swf?7/playlist.xml>">
    now here is where I am stuck, as I said the flash mp3 player urlLoader and URLRequest, and I have been searching for days to figure out what I am supposed to do to get the player to pick up on the flash vars, here is the top part of the as3 code where it calls for the mp3 and the xml.
    stop();
    var myFormat:TextFormat = new TextFormat();
    myFormat.color = "0xFFFFFF";
    list.setRendererStyle("textFormat", myFormat);
    var trackToPlay:String;
    var pausePosition:int = 0;
    var songURL:URLRequest;
    var isPlaying:Boolean = false;
    var i:uint;
    var myXML:XML = new XML();
    var XML_URL:String = "mp3_playlist.xml";
    var myXMLURL:URLRequest = new URLRequest(XML_URL);
    var myLoader:URLLoader = new URLLoader(myXMLURL);
    myLoader.addEventListener("complete", xmlLoaded);
    function xmlLoaded(event:Event):void {
        myXML = XML(myLoader.data);
       var firstSong:String = myXML..Song.songTitle[0];
       var firstArtist:String = myXML..Song.songArtist[0];
       songURL = new URLRequest("mp3_files" + firstSong + ".mp3");
       status_txt.text = "1. "+firstSong +" - "+firstArtist;
         for each (var Song:XML in myXML..Song) {
    i++;
    var songTitle:String = Song.songTitle.toString();
    var songArtist:String = Song.songArtist.toString();
    list.addItem( { label: i+". "+songTitle+" - "+songArtist, songString: songTitle, Artist: songArtist, songNum: i } );
    var myArray = new Array (0,0);
             list.selectedIndices = myArray;
    gotoAndStop(3);
    I am not asking for free work, I'm just trying to get pointed in the right direction, through searching I have been trying to find out how and what to change, and I have been having a great deal of trouble finding the info, I'm ready to pull my hair out.

    ok, here is the object/embed section from dreamweaver
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="386" height="250">
                  <param name="movie" value="flplayer.swf">
                <embed src="flplayer.swf?xml=members/$id/playlist.xml">
                  <param name="quality" value="high">
                  <param name="wmode" value="opaque">
                  <param name="swfversion" value="9.0.45.0">
                  <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
                  <param name="expressinstall" value="Scripts/expressInstall.swf">
                  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
                  <!--[if !IE]>-->
                  <object type="application/x-shockwave-flash" data="flplayer.swf" width="386" height="250">
                    <!--<![endif]-->
                    <param name="quality" value="high">
                    <param name="wmode" value="opaque">
                    <param name="swfversion" value="9.0.45.0">
                    <param name="expressinstall" value="Scripts/expressInstall.swf">
                    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                    <div>
                      <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                      </div>
                    <!--[if !IE]>-->
                    </object>
                  <!--<![endif]-->
                  </object>

  • Flex MP3 Player

    Just finished writing this tutorial.
    http://www.vipercreations.com/tutorials/Adobe%20Flex/29.html
    Teaches you how to create an entire mp3 player in Flex.
    Comments?

    Sorry for the necromancy, but I've seen this come up a few
    other places as well. I wanted to offer up my solution for anyone
    who wants to use it. Better still if anyone can point out any
    mistakes I made or even possibly tell me how to make a component
    out of it.
    Obviously it's still ugly as sin, but it does include a
    progress/scrub bar.
    Files:
    just
    mxml or
    mxml and
    mp3

  • MP3 Player Play/Pause?

    I'm making an MP3 player.  I can't get the play/pause toggle to work.  I'm not sure how to have the event be toggled on and off. Sorry, I'm a newbie to flex.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:net="flash.net.*" xmlns:media="flash.media.*" creationComplete="mySound.load(myURLReq)" themeColor="#000000" borderColor="#000000" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FFFFFF, #FFFFFF]">
        <mx:Script>
            <![CDATA[
                private function appInit():void {
                    stage.addEventListener( KeyboardEvent.KEY_DOWN, keyPressHandler );
                private function keyPressHandler( e:KeyboardEvent ):void {
                    // if the spaceBar is pressed then toggle play/pause
                    if( e.charCode == 32 ) {
                        if( this.focusManager.getFocus() != toggleBtn ) {
                            this.focusManager.setFocus( toggleBtn );
                            // whatever happens when you click on the button you place here
                            // it's best to have a 'clickHandler' that calls another method
                            toggleBtnHandler();
                private function clickHandler( e:Event ):void {
                    toggleBtnHandler();
                private function toggleBtnHandler():void {
                    if( toggleBtn.label == "PLAY" ) {
                        toggleBtn.label = "PAUSE";
                    } else {
                        toggleBtn.label = "PLAY";
            ]]>
        </mx:Script>
    <mx:Button id="toggleBtn"
            x="10" y="70" toolTip="Press the spacebar to toggle label"
            click="clickHandler( event );"
            label="PLAY"/>
       <mx:Number id="myPos">0</mx:Number>
       <net:URLRequest id="myURLReq" url="01-amy_macdonald-dont_tell_me_that_its_over.mp3" />
       <media:SoundChannel id="mySoundChannel" />
       <media:Sound id="mySound" />
       <mx:Panel title="MP3 Player">
         <mx:Text id="prog" />
         <mx:ControlBar>
           <mx:Button id="play" label="PLAY" click="mySoundChannel = mySound.play(myPos, 0, null);" />
           <mx:Button id="pause" label="PAUSE" click="myPos = mySoundChannel.position; mySoundChannel.stop();" />
           <mx:Button id="stop" label="STOP" click="mySoundChannel.stop();" />
         </mx:ControlBar>
       </mx:Panel>
    </mx:Application>

    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=288&threadid =1248142&highlight_key=y&keyword1=mp3
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=288&threadid =1249411&highlight_key=y&keyword1=mp3
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=288&threadid =1247499&highlight_key=y&keyword1=audio

  • Need simple mp3 player

    I need either a flex or flash mp3 player that uses an xml
    playlist and runs on FMS3. Our new FMS server is working great and
    we've been successful at installing samples that came with the
    server as well as the tutorials in the Adobe developer's site. The
    thing is... I'm a CF developer and while I can navigate flex and
    flash (have downloaded trials for both now) I am unable at this
    point to write an application.
    Can anyone direct me to a product (free or for sale) that
    gives me a nice small skinable mp3 player with just
    play/stop/pause/volume controls and allows the user to select a
    file from an xml playlist. I'd like source files so I can modify
    but that's not necessary as long as the product is configurable. I
    can find no such creature via google search. TIA!

    How are you trying to transfer the files? Are these definitely MP3 files and what are the specifications of the files?

  • How can I fix 2121 sandbox security error, local swf MP3 player test calls MP3's from website?

    1st Issue.  I am a new user and am fighting #2121, #2044 & #2048 Flash security errors in getting an MP3 player to work as I test the fla file in Flash CS4 on my local computer.  The fla in Flash and swf in Dreamweaver calls mp3 files from our host server on the internet.
    After reading various sparce posts and Adobe articles on this issue, I have added a crossdomain.xml file at our websites root (see file below) and added the code, flash.system.Security.allowDomain in line 1 of the action script of the flash fla to allow our site access (-see script below).  These efforts have helped get the player to work better on our test site.
    But, I am still getting the 2121 error within Flash CS4 as I debug the player or play the swf in live view within Dreamweaver.  Playing the fla or swf will lock-up the Flash 10 player and crash the program. I am having the mp3 player access the mp3 files from our web site as I test the fla.
    Here is the debug message I am getting:
    Attemping to launch and connect to Player using URL C:\Web Site Files\Plank Productions afc\Plank Productions 2010\site\MP3_List_Player_AS3.swf [SWF] C:\Web Site Files\Plank Productions afc\Plank Productions 2010\site\MP3_List_Player_AS3.swf - 209827 bytes after decompression SecurityError: Error #2121: Security sandbox violation: Sound.id3: file:///C/Web%20Site%20Files/Plank%20Productions%20afc/Plank%20Productions%202010/site/MP3%5FList %5FPlayer%5FAS3.swf cannot access . This may be worked around by calling Security.allowDomain.
    at flash.media::Sound/get id3()
    at com.afcomponents.mp3player::MP3Player/get id3()
    at com.afcomponents.mp3player::MP3Player/handleBuffe ring()
    Here is the crossdomain xml code:
    <?xml version="1.0" encoding="utf-8"?>
    <?xml version="1.0"?><!DOCTYPE cross-domain-policySYSTEM "http://www.macromedia.com/xml/dtds/cross-domain- policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="www.plankproductions.com" secure="false"/>
    <allow-access-from domain="plankproductions.com" secure="false"/>
    </cross-domain-policy>
    Here is the AS3 in line 1 of the Fla file that I added:
    flash.system.Security.allowDomain("www.plankproductions.com", "plankproductions.com");
    2nd Issue.  The online playback of the mp3 player will play about 4-7 mp3’s then lock-up in Internet Explorer 8 on a pc.  I think that is related to flash security, not sure, I do not know how to debug the mp3 player on the web site.
    http://plankproductions.com/pptemplate_afc_mp3.shtml
    Questions.
    -How can I resolve the error 2121?
    -What as3 code do I need to target the local c drive to have security clearance and work properly, is this the problem?
    -Why is the mp3 player locking up on the web page?
    Thank you in advance for any help.
    Operating System: Windows XP Professional, CS4 Web Premium

    Do you have the standard or debug player installed?  Such errors should not occur with the standard player.
    See http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html#main_Find_Flash_Play er_version_type_and_capabilities__Flash_developers_only_

  • How do I build a simple MP3 player in Flash?

    I have recently redesigned my website and need to make
    several mp3 files available for playback. I'm a voiceover talent,
    and I need to have my demos readily available to those who visit my
    website to hear my work.
    I built the site using Dreamweaver (there's a little bit of
    Flash content there, but the site itself is not a Flash site). I
    know just anough about using Flash to be dangerous. :-) At the
    present time, I just embedded my 11 demos on a page, with each demo
    appearing TWICE -- once with the Windows Media Player embedded and
    once with the Quick Time player embedded -- to allow for maximum
    compatibility. But with 22 media players embedded in the page,
    well, you can pretty much guess what happens -- the page takes a
    freakin' eternity to load. No one's going to wait that long.
    In a previous version of my website, I had deployed a
    third-party app called Wimpy Button to achieve this functionality
    (www.wimpyplayer.com). Wimpy button is a very simple little Flash
    app that is designed to achieve precisely the functionality I need.
    But now when I launch the Wimpy Button Maker (the first step to
    creating the player), I get an error message that I think is
    telling me that either a .dll file required by the program is not
    there on my computer OR that a program I have since installed on my
    computer is either using or has overwritten that .dll file. Either
    way, the Wimpy solution is not working for me. So naturally, since
    Wimpy was doing all this in Flash, I figured the most logical place
    to turn was to Flash itself. I'm hoping to create my own little
    playback interface that I can place in multiple instances on the
    webpage, with each one set to trigger playback of a different .mp3
    file.
    Here's an example of something similar to what I'd like to
    end up with. Visit
    http://randybrown.voice123.com.
    There, you'll see a series of players down the right-hand side of
    the page, and each one triggers playback of a different .mp3 file.
    A closer look at the .swf file can be seen at
    http://voice123.com/swf/small_player.swf
    , so, as you can see, the graphic itself ain't that complicated. I
    know I can build the graphics file (or something similar) without
    too much difficulty.
    But getting it to have the functionality I need to deploy for
    this purpose is where I'm lost. I just don't have enough experience
    with Flash to have much of a clue.
    Can anyone walk me through the steps involved?
    Your thoughtful answer would be MUCH appreciated.
    Randy

    The best MP3 player I ever found for flash uses xspf
    playlists and xml - really cool and easy to use/implement. Check it
    at
    http://musicplayer.sourceforge.net/
    This player will go through a playlist you determine, or can jump
    from track to track. It takes a little bit of testing to set up,
    but is much simpler than writing your own player - and it's free.

  • Coordinating mp3 Player w/ a loaded swf containing songs

    Can Anyone please help me!! I am using MX Pro 2004.
    I have an mp3 player loading my mp3's via an external xml
    file, it works fine on the 'main' fla file.
    My site is set up like this: main fla. file with every page
    (external swf) loading into it.
    I have a 'discography' page that you can flip through
    different CD's, each with a list of it's songs, and a 'play' button
    next to each. =How= do I get those play buttons to -coordinate-
    with the mp3 player on the main fla.????????
    The player has,(besides the usual ff/rr/stop,pause and play)
    a vol. control, a loading bar and cd title and song title read out
    for each tune. I -need- he songs on the externally loading
    'discography.swf' to be able to call the -specified song- when the
    button next to it is pressed -and- Stop whatever else is playing.
    And =How= do I get the mp3 player buttons to behave on those
    somgs?????
    I have searched, tried everthing I could find code-wise and
    I'm at a loss. I'm supposed to have this ready by tomorrow!!
    Anyone?? I know there must be a way...I just don't know how
    to code it.
    Thanks in advance to any willing soul!
    Wendy

    I RESOLVED THE ISSUE.
    I have my MP3 player using an XML file to get file data from, such as the artist name and location of the MP3 files.  I had the MP3 files in a folder called audio.  What resolved the issue was taking the MP3 files out of the audio folder and putting them in the root directory with all of my PHP and SWF files.  So, the audio files went from 'audio\christmas.mp3' to just 'christmas.mp3'.
    It's still weird that Flash grabs the audio files just fine when they were in the audio folder when I accessed the SWF file from my C drive.  The issue comes about when I try to access the MP3 files in the audio folder when trying to go through Apache web server.  So, yes, I am saying there is something that Apache is not configured correctly to do and I suggested my web hosting service to figure it out, because they kept blamming JavaScript or some other web dev item as the issue.  Even though it is messy to have all the MP3 files in the root directory, with the rest of my files, at least my MP3 player works in all 5 major browsers now.
    Thanks for all your assistance KGlad.  You can take down my MP3 files from your server.
    I hope others find this thread very useful...it took a lot to figure it out.
    You can check out the MP3 player at: http://www.walnuttreefalls.com/details_mp3_xmas.php
    Julie

  • Looking for an mp3 player for a webpage

    because of apple I'm staying away from flash players for now...
    I 'm lloking for a simple to use mp3 player that's customizable - for example :
    read & display xml playlists
    make the list of viewable songs what we choose - like 10 songs or 20 songs - without scroll bars...
    I'm lookimg at:
    http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5
    http://www.wimpyplayer.com/products/wimpy_mp3.html
    http://playlist.software.informer.com/download-playlist-embedded-website-media-player/
    Any opinions are welcome

    Here's what I'm doing:
    HTML5.
    Here is the code and it is really simple:
      <audio controls="controls">
      <source src="../path/filename.ogg" type="audio/ogg" />
      <source src="../path/filename.mp3" type="audio/mpeg" />
      Your browser does not support the audio element. <a href="../path/filename.mp3">Right-Click here</a> and choose Save file as&hellip; to download the .MP3 file</audio>
    Works in all browsers. Works in all media players that support mpeg audio. But here's a word of warning:
    Some browsers may not know that the ogg audio is there, so you may need to edit your .htacess file (on Apache) or your filetypes (on Microsoft IIS servers) to include it.
    Here's the change to put into .htaccess. I don't use IIS:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    AddHandler application-ogg .ogg .ogv .oga
    That will enable both ogg video and audio. Without these lines, Firefox may not play your file.
    To make your audio files, please see this link.

Maybe you are looking for

  • I have lost my photos from my PC. I have them only on an iPod Touch 2nd Gen.

    I have lost my photos from my PC. I have them only on an iPod Touch 2nd Gen. How can I copy them from the iPod Touch 2nd Gen to my PC? The software version on the ipod 2nd Generation is 3.1.1(7C145). I would very much appreciate help in this regard.

  • Need help clearing up an image of a front license plate from a break in at my office

    I had a break in at my office and got a video of the car and front plate. Unfortunately Dropcam's quality is not great so the image is a little blurry. I'm hoping someone on this forum can help me clear it up. I've tried various filters in Photoshop

  • Spry examples not working when sitting on UNIX servers

    Hi All, I've been looking at the SPry dynamic table examples with the intention of using this with my own xml files. When viewing these samples locally it displays fine. When uploading onto our server, it displays nothing. There is a quick flash of t

  • Failed to retrieve metadata with BIBDEMO

    Hi, I also have problems with BIBEANS Metadata Catalog. I tried to setup a new project along the BIBEANS Demo manual and see an error when I try to retrieve Metadata. Message in detail: Successfully connected to the database but faild to retrieve met

  • Ejecting iPod No Longer Required?

    I updated my iPod recently to version 1.1 and noticed that when it completes syncronization the iPod no longer displays "Do No Disconnect", but simply shws the menu. I tried disconnecting without ejecting and it seemed there were no problems. Is ejec