Noob question from a high school physics teacher: I have written a web app for my students to analyze videos using the HTML video player. If they take videos on their iPhones, copy them to their chromebooks, and then edit the file extension from .mov to .mp4, things work fine. Is there a way to skip the extension change? I have seen examples like this:
source src="https://www.somewebsite.com/videos/sample.mov" type="video/mp4"
where the call to the file is embedded in the code. But my students are making their own videos, so they need to be able to load them.
I tried
inputFile.type = "video/mp4"
but the type seems to be read only, because when I read it back, it is still "video/quicktime"