Skip to content

Commit

Permalink
remove ffmpeg handling
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Jan 20, 2025
1 parent a539fe4 commit 3ffa07e
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions client/ayon_third_party/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@

class ToolInfo(TypedDict):
root: Optional[str]
# 'subdir' is replacement of 'root' to support shared paths
# - use relative subdir instead of explicit path
subdir: Optional[str]
checksum: str
checksum_algorithm: str
downloaded: str
Expand Down Expand Up @@ -392,13 +389,9 @@ def _get_resources_dir(*args) -> str:


def _get_info_path(name: str) -> str:
if name == "oiio":
# TODO use the same folder for metadata as default does
# - can be changed when oiio is updated
return get_launcher_storage_dir(
"addons", f"{ADDON_NAME}-{name}.json"
)
return _get_resources_dir(f"{name}.json")
return get_launcher_storage_dir(
"addons", f"{ADDON_NAME}-{name}.json"
)


def _filter_file_info(name: str) -> List["ToolInfo"]:
Expand Down

0 comments on commit 3ffa07e

Please sign in to comment.