I'm trying to embed a video using html5 with a local mp4 file.
file on my local machine.
when i debug i keep getting invalid file path or unsupported video type.
What am i missing? I can get this to work if i plug in a http link to a mp4. But when i plug in a local file it doesn't
<link href="http://vjs.zencdn.net/4.1/video-js.css" rel="stylesheet" />
<script src="http://vjs.zencdn.net/4.1/video.js">
videojs("example_video_1", {}, function(){
});
</script>
<video id="example_video_1" class="video-js vjs-default-skin" width="640" height="264">
<source src="file:///C:/Users/rpimentel/Desktop/converts/demo1.mp4" type='video/mp4' />
</video>