diff --git a/pymkv/MKVFile.py b/pymkv/MKVFile.py index af3b247..cd87088 100644 --- a/pymkv/MKVFile.py +++ b/pymkv/MKVFile.py @@ -93,9 +93,6 @@ def __init__(self, file_path=None, title=None, mkvmerge_path='mkvmerge'): self._link_to_next_file = None self.tracks = [] self.attachments = [] - if file_path is not None and not verify_mkvmerge(mkvmerge_path=self.mkvmerge_path): - raise FileNotFoundError('mkvmerge is not at the specified path, add it there or change the mkvmerge_path ' - 'property') if file_path is not None and verify_matroska(file_path, mkvmerge_path=self.mkvmerge_path): # add file title file_path = expanduser(file_path)