views:

36

answers:

0

Hi, I'm pretty new to flowplayer and have been trying to get it to play an mp3 where the URL doesn't end with .mp3 but streams mp3 correctly. Could someone please give me some direction?

This is how my code looks currently:

flowplayer(
        "player", 
        "flowplayer-3.2.2.swf", 
        {
            plugins: 
            {
                controls: {autoHide: false},
                audio: {url: "plugins/flowplayer.audio-3.2.0.swf"}
            },
            playlist: 
            [
                {
                    url: 'http://localhost:8888/song.php?title=song3',
                    provider: "audio"
                }
            ]
        }
    );

thanks in advance,

fbr