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

JwPlayer and WowzaServer 2.2.3


Hello

I use old WowzaServer 2.2.3

I was using Jwplayer 6.0.2813
I have the following code :
<script type="text/javascript">
jwplayer("myElement").setup({
file: "rtmp://<myIP>/streamingvideo/<MyMovie.mp4>",
//skin: "skin2/skins/six/six.xml",
height: '100%',
width: '100%'
});

=> everything works fine

I try to use caption (subtitles) function , It doesn't worked. So I upgrade to jwplayer 6.8.4616
I changemy code like documentation : http://www.longtailvideo.com/support/jw-player/28854/using-rtmp-streaming
So I write this code :

jwplayer("myElement").setup({
playlist: [{
sources: [{
file: "rtmp://<myServerIP>/streamingvideo/mp4:<MyMovie.mp4>"
}]
}],
height: 640,
primary: "flash",
width: 480

});;


I try without mp4 parameter
I have always the error message on the player :
PlayList could not be loaded:File not Found

I think that the primary parameter is ignored

What is my mistake ?

Please help me

Thanks for your answer

Regards

7 Community Answers

Ethan Feldman

JW Player Support Agent  
0 rated :

Do you have a link?

JW Player

User  
0 rated :

http://www.bonnezic.com/Content.php

Ethan Feldman

JW Player Support Agent  
0 rated :

Not Found

The requested URL /Content.php was not found on this server.

JW Player

User  
0 rated :

hello,

I found my mistake. Sorry to loose your time.
So I have another problem. Captions doesn't works. CC menu doesn't display
Here my code :

jwplayer("myElement").setup({
playlist: [{
sources: [{
file: "rtmp://myIP/streamingvideo/mp4:MyMovie.mp4"
}]
}],
primary: "flash",
tracks: [{
file: "myVtt.vtt",
label: "English",
kind: "captions",
"default": true
},{
file: "myVtt.vtt",
kind: "captions",
label: "French"
}]
});

Movie plays. But no subtitles. I have no message on firebug.

You'll find my example on :
http://bonnezic.com/jw684616/video.html

Thanks for your help

If you want I create a new ticket because the problem is different.

Ethan Feldman

JW Player Support Agent  
0 rated :

The tracks needs to be inside of the playlist block.

JW Player

User  
0 rated :

Hello
Great it's works.
Thanks a lot

Ethan Feldman

JW Player Support Agent  
0 rated :

Np!

This question has received the maximum number of answers.