From f9232e239792e600ab275eeab7703570e6fdf567 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 14 Apr 2021 15:12:13 +0200 Subject: [PATCH] renamed ffmpeg_utils to vendor_bin_utils --- openpype/lib/__init__.py | 24 +++++++++---------- .../{ffmpeg_utils.py => vendor_bin_utils.py} | 0 2 files changed, 12 insertions(+), 12 deletions(-) rename openpype/lib/{ffmpeg_utils.py => vendor_bin_utils.py} (100%) diff --git a/openpype/lib/__init__.py b/openpype/lib/__init__.py index bbb33189a1..b601733ffe 100644 --- a/openpype/lib/__init__.py +++ b/openpype/lib/__init__.py @@ -39,6 +39,13 @@ from .env_tools import ( get_global_environments ) +from .vendor_bin_utils import ( + get_vendor_bin_path, + get_oiio_tools_path, + get_ffmpeg_tool_path, + ffprobe_streams +) + from .python_module_tools import ( modules_from_path, recursive_bases_from_class, @@ -116,13 +123,6 @@ from .path_tools import ( get_last_version_from_path ) -from .ffmpeg_utils import ( - get_vendor_bin_path, - get_oiio_tools_path, - get_ffmpeg_tool_path, - ffprobe_streams -) - from .editorial import ( is_overlapping_otio_ranges, otio_range_to_frame_range, @@ -145,6 +145,11 @@ __all__ = [ "get_paths_from_environ", "get_global_environments", + "get_vendor_bin_path", + "get_oiio_tools_path", + "get_ffmpeg_tool_path", + "ffprobe_streams", + "modules_from_path", "recursive_bases_from_class", "classes_from_module", @@ -201,11 +206,6 @@ __all__ = [ "get_version_from_path", "get_last_version_from_path", - "get_vendor_bin_path", - "get_oiio_tools_path", - "get_ffmpeg_tool_path", - "ffprobe_streams", - "terminal", "merge_dict", diff --git a/openpype/lib/ffmpeg_utils.py b/openpype/lib/vendor_bin_utils.py similarity index 100% rename from openpype/lib/ffmpeg_utils.py rename to openpype/lib/vendor_bin_utils.py