I have created a service menu that runs a python script on a selected file and it works fine. However, I am trying to restrict it to only one single video mimetype - mkv.
It works for all video mimetypes using this:
but not at all if I try this:
Any suggestions?
It works for all video mimetypes using this:
Code:
MimeType=video/*;
Code:
MimeType=video/mkv;
Comment