isMKV property

bool get isMKV

Checks if a file path or URL represents an MKV video file.

Implementation

bool get isMKV {
  final mt = mimeType();
  return mt == 'video/x-matroska';
}