I am trying to use JWPlayer to play videos on my website.
The video file is given as an url from our server, but the thing is the url does not contains any format, since the file is stored as a blob on server side.
So, does anyone know how to solve it? Thanks.
Here is my code as javascript:
function loadVideoByUrlWithSize(elementId, videoUrl, videoThumbnail, width, height) {
jwplayer(elementId).setup({
file : videoUrl,
image : videoThumbnail,
width : width,
height : height
});
}