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

jwTroubleShoot


Unable to autostart the stream in Windows 10 (Chrome) with JW Player ver 7.3.5
The loader icon is going in circle but the stream never starts.
On IE and Windows 7 and 8 / 8.1 everything is working normal.

Here is the code

var playerInstance = jwplayer("player");
playerInstance.setup({
file: "rtmp://serverpath/flv:stream.mp4",
autostart: true,

width: "100%",
aspectratio: "16:9",
image : "http://path/image.jpg",

rtmp: {
bufferlength: 4
}
});

I also tried with the api and tried to call jwplayer().play() inside a setTimeout but with no luck.

jwplayer().on('ready', function(){

jwplayer().play('true');
});

1 Community Answers

Marin

Best Answer 

I found out that Chrome has a limitation when dealing with video player smaller then 400x300 px.
After setting the player size to higher then 400 by 300 everything was working OK.

Marin

Best Answer  User  
0 rated :

I found out that Chrome has a limitation when dealing with video player smaller then 400x300 px.
After setting the player size to higher then 400 by 300 everything was working OK.

This question has received the maximum number of answers.