Html 5 video tag file without extension
I have this sample code that works:
<video src="./ellen.ogv" width="320" height="240" type='video/ogg; codecs="theora, vorbis"' controls></video>
And this does not work:
<video src="./ellen" width="320" height="240" type='video/ogg; codecs="theora, vorbis"' controls></video>
The only change was in the file name. The first “indicates” its expansion, the second does not.
This is just an idea of my problem when the file I want to transfer CANNOT have the extension, but is theora / vorbis (ogv) file.
How can I deal with this problem, i.e. make a video tag even if my file name does not have ".extension"?