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

WOWZA STREAMING RTMP


First of all, I would like to thank everyone answering this question.

I'm doing a project for my university and we have to create a webpage which works like Youtube. People upload their videos and they are also able to see the other videos which are in the webpage.
We are using Wowza as the streaming provider and JW Player for playing the video.
Our problem is when I try to play a video, it always says that it can't connect with the server.
The php doc is the following:

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Probando probando triunfé programamando</title>
<script src="jwplayer.js"></script>
<script>jwplayer.key = "[JW Player-KEY]";
</script>
</head>
<body>
<div id="player"></div>

<script>
jwplayer("player").setup({
sources: [
{
file: 'rtmp://[wowza-ip]:1935/vod/sample.mp4'
},
{
file:'rtsp://[wowza-ip]:1935/vod/sample2.mp4'
}],
height: 360,
width: 640
});
</script>

</body>
</html>

The page is really simple because we just want this to work.
I'm really desperate and I really need help.
Thank you all again.

1 Community Answers

Todd

JW Player Support Agent  
0 rated :

Is your RTMP stream working correctly? We have no way to verify this for you on our side.
And RTSP streams will not work in our player.

What browser / device are you using for testing? RTMP streams will only work on desktop browsers where Flash is installed, as RTMP requires Flash. This means that RTMP streams will never work on mobile devices.

This question has received the maximum number of answers.