No preview for .mov files?

I’m trying to get the preview generator to create previews for my .mov files which are uploaded from my iphone.
When running ./occ preview:generate-all -vvv it seems from the output that the preview is created, but when I go to the folder in nextcloud, no preview is shown.
The preview is created for mp4 files, it’s just my .mov files from my Iphone that’s not working.

I’m using the latest nextcloud 14 with preview generator from the apps “store” in nextcloud.
My config.php includes:
‘enabledPreviewProviders’ =>
array (
0 => ‘OC\Preview\Image’,
1 => ‘OC\Preview\TXT’,
2 => ‘OC\Preview\PDF’,
3 => ‘OC\Preview\Movie’,
4 => ‘OC\Preview\TIFF’,
5 => ‘OC\Preview\SVG’,
),
ffmpeg is installed and the /usr/bin/ path is in my env

This is some of the output from running “./occ preview:generate-all -vvv”:
2018-10-09T21:24:36+00:00 Generating previews for /files/2013/20131224_164838.mov
2018-10-09T21:24:37+00:00 Generating previews for /files/NO_exif/20180715_173210.mp4

Any ideas why mp4 files are getting previews but not my mov files?

I noticed two things and I don’t know if that changes anything.

6 => ‘OC\Preview\SVG’,
),```

Maybe try not including the comma after `SVG,` instead use `SVG`

‘enabledPreviewProviders’ =>
array (
0 => ‘OC\Preview\Image’,
1 => ‘OC\Preview\TXT’,
2 => ‘OC\Preview\PDF’,
3 => ‘OC\Preview\Movie’,
4 => ‘OC\Preview\TIFF’,
5 => ‘OC\Preview\SVG’
),


I think you should also add 
`5 => ‘OC\Preview\MOV’`

in that case, you will need the **comma** `,` 

‘enabledPreviewProviders’ =>
array (
0 => ‘OC\Preview\Image’,
1 => ‘OC\Preview\TXT’,
2 => ‘OC\Preview\PDF’,
3 => ‘OC\Preview\Movie’,
4 => ‘OC\Preview\TIFF’,
5 => ‘OC\Preview\SVG’,
6 => ‘OC\Preview\MOV’
),


my config file looks like this:

‘default_phone_region’ => ‘US’,
‘preview_max_x’ => 1024,
‘preview_max_y’ => 1024,
‘enable_previews’ => true,
‘enabledPreviewProviders’ =>
array (
0 => ‘OC\Preview\PNG’,
1 => ‘OC\Preview\IMAGE’,
2 => ‘OC\Preview\HEIC’,
3 => ‘OC\Preview\JPEG’,
4 => ‘OC\Preview\GIF’,
5 => ‘OC\Preview\BMP’,
6 => ‘OC\Preview\XBitmap’,
7 => ‘OC\Preview\MP3’,
8 => ‘OC\Preview\TXT’,
9 => ‘OC\Preview\MarkDown’,
10 => ‘OC\Preview\MKV’,
11 => ‘OC\Preview\MOV’,
12 => ‘OC\Preview\Movie’,
13 => ‘OC\Preview\MP4’,
),

dear @smailpouri you have got HEIC in your config. does it work te create HEIC previews with the current NC release?

Yes that works.

MOV, MKV = nothing.

Only works if I click on the video in Photos tab and then the preview is generated. Otherwise nothing.