To not return an error when uploading video with an extension that is present in videoAllowedTypes.
Only default video types ['mp4', 'webm', 'ogg'] are allowed.
Fiddle: https://jsfiddle.net/ef2ngqa3/
Example mov file: http://techslides.com/demos/samples/sample.mov
Try to upload the video, you will see an error in the console (and in the interface). Btw, froalaEditor.video.error is not present in the documentation Just the codeError event. You want me to make a separate issue?
OSX El Capitan
Version 62.0.3202.89 (Official Build) (64-bit)
The error is coming from the fact that the editor is using the HTML5 video tag. At this moment, mov is not a supported video type by the browsers: https://www.w3schools.com/html/html5_video.asp.
I found solution to upload video form iphone. Just add videoAllowedTypes: ['quicktime']. And you can upload .mov video form your iphone as html5 video.
Most helpful comment
I found solution to upload video form iphone. Just add videoAllowedTypes: ['quicktime']. And you can upload .mov video form your iphone as html5 video.