Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi..
I have a video url (that uploaded in server (or) video.mp4 inside a folder in server ) .I want to play that video using jquery plugin (like jquery lightbox) by providing server path ( http://124.124.79.144/foldername/data/video.mp4).

I use jquery lightbox, but in that, I proved the url path, that does not work for server path url(but it works when I provide youtube video link) .I don't know whats happing.. Is any one for help.

Also I use html5 video tag...It does not work on server path .
Posted
Comments
Afzaal Ahmad Zeeshan 27-Nov-14 11:42am    
What error do you get, you can see the error in the Console, open it by pressing F12 and going to the Console. You will find the actual error include it in the question to get any help.
aravindnass 27-Nov-14 12:46pm    
No, I don't get any error in consol .but video is not playing..may be the server path url is not reading
Zoltán Zörgő 30-Nov-14 7:53am    
Any progress? If you have found my answer of use, feel free to accept it!

1 solution

Is the url valid? Try to open it directly in Chrome for example. As an alternative, you can try other sources, like: http://techslides.com/demos/sample-videos/small.mp4[^]
Be aware, that there can be a problem, if the server is trying to deliver the video file as attachment or with inproper mime type. For IIS you can add it to the web.config (or in several other ways[^]), like this:
HTML
<staticContent>
      <remove fileExtension=".mp4" />
      <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
      <remove fileExtension=".webm" />
      <mimeMap fileExtension=".webm" mimeType="video/webm" />
</staticContent>


And I recommend using this player to have a cross-browser solution: http://www.videojs.com/[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900