fix ffmpeg path join

This commit is contained in:
iLLiCiTiT 2021-04-13 11:28:29 +02:00
parent 8c65591948
commit 82cbcd7b43

View file

@ -162,7 +162,7 @@ def set_openpype_global_environments() -> None:
if platform_name == "windows":
ffmpeg_path_parts.append("bin")
ffmpeg_path = os.path.join(ffmpeg_path_parts)
ffmpeg_path = os.path.join(*ffmpeg_path_parts)
os.environ["OPENPYPE_FFMPEG_PATH"] = ffmpeg_path