Use ffmpeg parsing for media probe metadata and remove ffprobe bundling

This commit is contained in:
2026-05-22 03:08:36 +00:00
parent 7eb81877fd
commit 0660b4e9d2
6 changed files with 143 additions and 155 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ _frontend_build = _pkg / "frontend-build"
_icon_win = _pkg / "assets" / "mediahive.ico"
_icon_mac = _pkg / "assets" / "mediahive.icns"
_tools_dir = Path(SPECPATH).parent / "build" / "ffmpeg"
_tool_names = ["ffmpeg.exe"] if sys.platform == "win32" else ["ffmpeg", "ffprobe"]
_tool_names = ["ffmpeg.exe"] if sys.platform == "win32" else ["ffmpeg"]
_binaries = []
for _tool_name in _tool_names: