Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4640 from ynput/bugfix/ffmpeg_executable_validation
Browse files Browse the repository at this point in the history
  • Loading branch information
antirotor authored Mar 17, 2023
2 parents b45a907 + f96670d commit 8d828f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/lib/vendor_bin_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def get_ffmpeg_tool_path(tool="ffmpeg"):
# Look to PATH for the tool
if not tool_executable_path:
from_path = find_executable(tool)
if from_path and _oiio_executable_validation(from_path):
if from_path and _ffmpeg_executable_validation(from_path):
tool_executable_path = from_path

CachedToolPaths.cache_executable_path(tool, tool_executable_path)
Expand Down

0 comments on commit 8d828f4

Please sign in to comment.