when I run this script to find out the MIME type of files the MIME type returned for .f4v files are returned as application/octet-stream and not video/mp4. This makes it impossible to upload .fv4 files on my site as the critira are for files to either have a MIME type of video/mp4,video/x-flv or video/webm. is there a way around this?
<?php
$fileName = "file.f4v";
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mime = finfo_file($finfo, $fileName);
?>