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

Error loading player: No playable sources found


Error loading player: No playable sources found

and my configuration

var vid=[
{
file:"http://search.awqaf.gov.kw/StreamFiles.ashx?filename=../videos/46.m4v&type=video&mimetype=video/m4v"
}
];
]
var playerInstance = jwplayer("jsplaylist");
playerInstance.setup({
image: "avatar.jpg",
sources: vid,

"autostart": true

});

5 Community Answers

d...

User  
0 rated :

if i take the file url
and edit it with
http://search.awqaf.gov.kw/StreamFiles.ashx?filename=../videos/46.m4v&type=video&mimetype=video/mp4"
and put it in the browser it displays html player
so need to know what's wrong with the set up

d...

User  
0 rated :

i put video url to my account video
it works
https://content.jwplatform.com/previews/7SCmIbcp-xm79qDOM

Alex

JW Player Support Agent  
0 rated :

Hi there,

If you are embedding content that doesn’t end in a file extension that we support, you may have to add the type configuration option to your setup so the player knows what format is being embedded. This would make your setup:

var vid = [{
  file: "http://search.awqaf.gov.kw/StreamFiles.ashx?filename=../videos/46.m4v&type=video&mimetype=video/m4v",
  type: "mp4"
}];

var playerInstance = jwplayer("jsplaylist");
playerInstance.setup({
  image: "avatar.jpg",
  sources: vid,
  "autostart": true
});

Thank you.

d...

User  
0 rated :

thanks alex
it works for me

Alex

JW Player Support Agent  
0 rated :

Not a problem!

This question has received the maximum number of answers.