- I have a video url of .mp4 file
- When I try to play using html5 video tag or video.js, the video never buffers.
- But when I try the same link in browser it downloads the video.
Code :
<html>
<head>
<link href="http://vjs.zencdn.net/4.5/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/4.5/video.js"></script>
</head>
<body>
<video width="320" height="240" controls>
<source src="http://vl.mccont.com/ItemFiles/%5BFrom%20www.metacafe.com%5D%2011334027.29120961.4.mp4?__gda__=1397298243_b382c45af7c5325b3f7443f57412d04c
" type="video/mp4">
Your browser does not support the video tag.
</video>
<video id="my_video_1" class="video-js vjs-default-skin" controls
preload="auto" width="640" height="264" poster="my_video_poster.png"
data-setup="{}">
<source src="http://vl.mccont.com/ItemFiles/%5BFrom%20www.metacafe.com%5D%2011334027.29120961.4.mp4?__gda__=1397298243_b382c45af7c5325b3f7443f57412d04c" type='video/mp4'>
</video>
</body>
</html>
I am unable to figure/google out the issue. Please help.
EDIT
The above code works well in firefox and the video gets played. It's not working with chrome, seems like a plugin issue or such...