.MOV videos can't be play on browser

Hi @tx7,

Probably the browser doesn’t support playing back .mov files. The video player app of NC should be capable of playing quicktime videos (.mov), while it checks for this mime type as well:

mimeTypes : [
        'video/mp4',
        'video/webm',
        'video/x-flv',
        'video/ogg',
        'video/quicktime',
        'video/x-matroska',
],

While the app is based on video.js I found an issue on Github:

There it’s said:

Video.js passes the mime type you supply directly to the browser to check if the type is supported, so if video/quicktime doesn’t work, then the browser is saying it can’t support it. Or there’s an error in the file that’s blocking playback.

So maybe it works with another browser or maybe you just need a quicktime plugin (don’t know if there is one for Chrome).