Skip to content

Commit

Permalink
bundled mediainfo lib as fallback, not default
Browse files Browse the repository at this point in the history
  • Loading branch information
getzze committed Jul 19, 2024
1 parent 47e7b57 commit e4a1261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion knowit/providers/mediainfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ def _get_bundled_paths(os_family=None):
def create(cls, os_family=None, suggested_path=None):
"""Create the executor instance."""
candidates = (
*cls._get_bundled_paths(os_family),
*define_candidate(cls.locations, cls.names, os_family, suggested_path),
*cls._get_bundled_paths(os_family),
)
for candidate in candidates:
if MediaInfo.can_parse(candidate):
Expand Down

0 comments on commit e4a1261

Please sign in to comment.