Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Safari <input type="file" accept="video/*"> ignores mp4 files

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?

like image 538
cdanzig Avatar asked Oct 01 '13 03:10

cdanzig


2 Answers

I found that the following accept string will add mp4 and m4v to the list of file types that safari will accept:

accept="video/mp4,video/x-m4v,video/*" 

I'm not sure what the mime type is for webm videos but if you can look that up you should be able to tack it on to the accept string. The trick is to specify the mime type, just using a file extension won't work.

like image 151
sbennett Avatar answered Sep 19 '22 07:09

sbennett


You can take a look at webkit source code ~/Source/WebCore/platform/MIMETypeRegistry.cpp.

These types are customized by Apple for Safari, and may not be working on other browsers.

like image 35
Alan Dong Avatar answered Sep 19 '22 07:09

Alan Dong