
How to play videos without file extension?
Hi,
I need to play videos (e. g. flv and wmv) without file extension. Setting the "type" property to the corresponding type (I found an article here describing that) didn't work. Using a playlist didn't work either.
jwplayer(videoPlayerContainer).setup({
provider: 'http',
title: title,
autostart: false,
width: videoWidth,
height: videoHeight,
logo: {
file: videoLogo
},
playlist: [{
sources: [{
file: fileName,
type: 'flv'
}],
title: "Test"
}]
});
Can you help?
Thanks, Ingo