I am using an HTML file input like this:
<input type="file" accept="video/*">
to allow my users to upload videos to my site. This works as expected in all modern browsers (only permitting the user to select video files) except Safari.
From what I can tell Safari seems to interpret the accept="video/*"
attribute as accept="*.mov"
ignoring most, if not all, other video formats / extensions (webm, m4v, etc).
Any suggestions on how to get the select dialog to allow only common video filetypes (not just .mov's) in Safari?