Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Wowza + embedding player


I want embedding video in web page for desktop and mobile device.
My code is:

<div id="myElement">Loading the player...
<a href="rtsp://172.30.100.100:1935/vod/prova.mp4">Click here</a></div>

<script type="text/javascript">

jwplayer("myElement").setup({
sources: [
{
file: "rtmp://172.30.100.100:1935/vod/mp4:prova.mp4"
}
,{
file: "http://172.30.100.100:1935/vod/prova.mp4/playlist.m3u8"
}
],
rtmp: {
bufferlength: 3
},
fallback:false
});
</script>

This run on desktop device, ipad and iphone, but not on android phone. Why?

2 Community Answers

MisterNeutron

User  
0 rated :

This might provide some enlightenment:

http://www.jwplayer.com/blog/the-pain-of-live-streaming-on-android/

Ethan Feldman

JW Player Support Agent  
1 rated :

In 6.9 we are going to provide better support for HLS on Android.

Here is a work around you can use for the time being – http://demo.jwplayer.com/jeroen/android.html

This question has received the maximum number of answers.