mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 01:27:07 +00:00
Fix for ffprobe not found under Windows.
This commit is contained in:
parent
39e658e913
commit
06092c14a9
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ def get_binary(name):
|
|||
name = "%s.exe" % name
|
||||
elif platform.system() == "Darwin": # MacOSX
|
||||
system = 'MacOSX'
|
||||
if name == 'ffprobe':
|
||||
if name in ['ffprobe', 'ffprobe.exe']:
|
||||
dir_name = 'ffmpeg'
|
||||
|
||||
exe_dir = os.path.abspath(os.path.join(binaries_dir, system, machine, dir_name))
|
||||
|
|
Loading…
Reference in a new issue