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

Not Working Streaming in Android JWPlayer without Flashplayer


Hi,
i am using jwplayer in android. in my android device not have to install Flashplayer. and i am trying to Streaming url :

rtmp://edge5.video.vaughnsoft.net:443/live?30dabc4871922a1314192e925ab7961d<playpath>live_discomar <swfUrl>http://vaughnlive.tv/800021294/swf/VaughnSoftPlayer.swf <pageUrl>http://vaughnlive.tv/embed/video/discomar?viewers=true&watermark=left&autoplay=true

This is working in Desktop Mozilla Browser. but not working in android Browser.

i am using this Code:

File Name : myvideo.html

<html>
<head>
<title>Test Page</title>
</head>
<body>
<script type="text/javascript" src="http://player.longtailvideo.com/jwplayer.js"></script>
<div id="player"></div>
<script type="text/javascript">
jwplayer("player").setup({
"streamer": "rtmp://edge5.video.vaughnsoft.net:443/live?30dabc4871922a1314192e925ab7961d",
flashplayer: "http://vaughnlive.tv/800021294/swf/VaughnSoftPlayer.swf",
volume: 80,
width: 465,
stretching: 'fill'
});
</script>
</body>
</html>


================

In Java file :

mWebView = (WebView)findViewById(R.id.webview1);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginsEnabled(true);
mWebView.getSettings().setAllowFileAccess(true);
mWebView.getSettings().setPluginState(WebSettings.PluginState.ON);



mWebView.loadUrl("file:///android_asset/myvideo.html");


Please help me.

This is my Client site. which is use RTMP flash playback streaming.

1 Community Answers

Todd

JW Player Support Agent  
0 rated :

RTMP will not work in Android or iOS. Do you have an HLS stream for this?

This question has received the maximum number of answers.