Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FFmpeg Not Found Fix - Alpha v9.4 #557

Closed
wants to merge 5 commits into from
Closed
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
8 changes: 4 additions & 4 deletions Build_MacOS_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ printf -- "🐍 Creating Python virtual env\n"
python3 -m venv .venv
source .venv/bin/activate

if [ ! -d $LOGS_PATH ]; then
if [[ ! -d $LOGS_PATH ]]; then
printf -- "📁 Creating Logs folder\n"
mkdir -p $LOGS_PATH;
mkdir -p "$LOGS_PATH";
fi

printf -- "💻 Installing Requirements \n"
Expand Down Expand Up @@ -60,10 +60,10 @@ if $COMMAND; then
printf -- "⌛ $((duration)) seconds of build\n"
if [[ "$OS" == 0 ]]; then
printf -- "📁 Opening App folder \n"
open $DIST_PATH
open "$DIST_PATH"
fi
else
printf -- "❌ Error Building the app\nPlease read the logs\navailable at build/logs\n"
fi

printf -- "🏁 END OF TRANSMISSION"
printf -- "🏁 END OF TRANSMISSION\n"
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ruff==0.4.2
pre-commit==3.7.0
pytest==8.2.0
Pyinstaller==6.6.0
Pyinstaller==6.11.0
mypy==1.10.0
syrupy==4.6.1
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
humanfriendly==10.0
opencv_python>=4.8.0.74,<=4.9.0.80
Pillow==10.3.0
PySide6==6.7.1
PySide6_Addons==6.7.1
PySide6_Essentials==6.7.1
Pillow==11.0.0
PySide6==6.8.0.1
PySide6_Addons==6.8.0.1
PySide6_Essentials==6.8.0.1
typing_extensions>=3.10.0.0,<=4.11.0
ujson>=5.8.0,<=5.9.0
numpy==1.26.4
rawpy==0.21.0
pillow-heif==0.16.0
pillow-heif==0.20.0
chardet==5.2.0
pydub==0.25.1
mutagen==1.47.0
Expand Down
Loading