
it's got to be simple - can't find the answer
I'm a newbie, working on a new installation. I'm trying to stream an mp3 file from a wowza server to a JW Player. I'm trying to make the same webpage work on multiple platforms. I have this setup working to play on WIndows/Firefox properly.
<script src="http://www.voicetext.com/jwplayer/jwplayer.js" ></script>
<script>jwplayer.key="___My JW Player Key ___";</script>
<div style="text-align: center;" id="player">
<div id="myElement"> </div>
</div>
jwplayer("myElement").setup({
file: "rtmp://wowza1.voicetext.com:1935/stream/mp3:VoiceSmallLoud.mp3",
width: 300,
height: 30,
autostart: true
});
You can experience this at
http://www.voicetext.com/voicetext/jwlistenmp3works
But it fails on Android/Chrome with "No playable sources found".
So I changed the player to this:
jwplayer("myElement").setup({
sources: [{
file: "rtmp://wowza1.voicetext.com:1935/stream/"
},{
file: "http://wowza1.voicetext.com:1935/stream/playlist.m3u8"
},{
file: "rtmp://wowza1.voicetext.com:1935/stream/mp3:VoiceSmallLoud.mp3"
}],
file: "mp3:VoiceSmallLoud.mp3",
width: 300,
height: 30,
autostart: "true"
});
Which fails both on windows/Firefox and Android/Chrome. On Windows I get a player that does not react. On Android, I get "no playable sources found".
You can experience it at:
http://www.voicetext.com/voicetext/jwlistenvod
This has got to be a simple syntax problem. Playing a mp3 from Wowza seems to be the simplest scenario. Can someone help me out here?
Thanks,
Joe