I'm seeing the error message "invalid source" in one of the mp4 videos on my ASP.NET website.
The URL seems correct - if I right-click the player and copy-paste the video URL into a new tab, Windows Media Player loads and plays the video.
When I use the developer console, I see a 304 (Not modified) response for the video under the Network tab, but its Type is empty.
Here's my code:
<video class="appVideo" controls width="300" height="300"><source src="/Videos/kittenlabs_weathertribes_video.mp4" type="video/mp4" />
<source src="/Videos/kittenlabs_weathertribes_video.ogg" type="video/ogg"/>
<img src="/Videos/kittenlabs_weathertribes_animation.gif" />
</video>
Would appreciate some help in clarifying why and how I can solve the issue.
amy