Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit cb547bf

Browse files
authored
fix(setup): Include ffprobe
1 parent 53f682d commit cb547bf

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77
__version__ = "1.0.0"
88
base = None
99
include_files: List[str] = []
10-
10+
ffmpeg_files: List[str] = ["ffmpeg.exe", "ffprobe.exe"]
11+
1112
if sys.platform == "win32":
1213
base = "Win32GUI"
13-
if (Path(__file__).parent / "ffmpeg.exe").exists():
14-
include_files.append("ffmpeg.exe")
14+
for file in ffmpeg_files:
15+
if (Path(__file__).parent / file).exists():
16+
include_files.append(file)
1517

1618
includes = ["tkinter"]
1719
excludes = ["matplotlib", "sqlite3"]

0 commit comments

Comments
 (0)