Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@ env/
*.avi
*.mkv
*.mxf
*.LRV
*_output/
output_frames/
TEST FOOTAGE/

# Node (remotion experiments)
node_modules/
remotion/out/

# Whisper model cache (downloaded at runtime)
whisper_models/

Expand Down
20 changes: 19 additions & 1 deletion AutoBin.spec
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,31 @@ pydantic_submodules = collect_submodules("pydantic")
# Collect skimage data files
skimage_data = collect_data_files("skimage")

# Collect mlx-whisper + mlx (Apple Silicon transcription)
mlx_whisper_submodules = collect_submodules("mlx_whisper")
mlx_submodules = collect_submodules("mlx")
mlx_whisper_data = collect_data_files("mlx_whisper")
mlx_data = collect_data_files("mlx")

# Collect huggingface_hub (for model downloads)
huggingface_submodules = collect_submodules("huggingface_hub")

a = Analysis(
["main.py"],
pathex=[],
binaries=[],
datas=[
*pyside6_data,
*skimage_data,
*mlx_whisper_data,
*mlx_data,
],
hiddenimports=[
*pyside6_submodules,
*pydantic_submodules,
*mlx_whisper_submodules,
*mlx_submodules,
*huggingface_submodules,
"core",
"core.schemas",
"core.frames",
Expand All @@ -59,6 +73,11 @@ a = Analysis(
"requests",
"skimage",
"skimage.metrics",
"mlx",
"mlx.core",
"mlx.nn",
"mlx_whisper",
"huggingface_hub",
],
hookspath=[],
hooksconfig={},
Expand All @@ -67,7 +86,6 @@ a = Analysis(
"tkinter",
"matplotlib",
"test",
"unittest",
"IPython",
"jupyter",
],
Expand Down
Loading