
I can´t reproduce with rtmp or mp4 hosted - JWPLAYER
Hi,
we´re going crazy, we try to reproduce different streams from wowza (live streaming, mp4,etc), but it´s impossible. Please help, we´re trying it with free JWPlayer, we bought a pay version of JWPlayer but we can´t play no video. Please give me an email to get contact.
We are working in a local html, we can play rtmp and mp4 urls in VLC Player but not in JWPlayer, code:
<!DOCTYPE html>
<html>
<head>
<title>URL Cases</title>
<script type="text/javascript" src="jwplayer.js"></script>
<script type="text/javascript" src="jwplayer.html5.js"></script>
<script type="text/javascript" src="jwplayer.flash.swf"></script>
<!-- <link type="text/css" rel="stylesheet" href="assets/style.css" media="all" /> -->
</head>
<body>
<h1>WOWZA MP4 + preview</h1>
<div id="wowza">
</div>
<script type="text/javascript">
jwplayer("wowza").setup({
file: 'rtmp://84.232.1.17:1935/vod/mp4:jos.stream_290k.mp4',
height: 240,
width: 480
});
</script>
<div id="test">
</div>
<script type="text/javascript">
jwplayer("test").setup({
file: 'rtmp://84.232.1.17:1935/live/jos.stream_290k',
height: 240,
width: 480
});
</script>
</body>
</html>