Use this command to find files of a given mime-type. In this example, we are looking for video files…
find -type f -print0 | xargs -0 file -i | grep -i video
And, by the way, this command, and the last two commands were sponsored by Mahesh. Happy now?
Simpler :
find -type f -exec file -i {} \; | grep -i video