-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_macos.sh
More file actions
executable file
·32 lines (27 loc) · 795 Bytes
/
run_macos.sh
File metadata and controls
executable file
·32 lines (27 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
# FFmpeg GUI - macOS/Linux Run Script
# Quick launcher for the application
echo "==========================================="
echo "FFmpeg GUI - Starting Application"
echo "==========================================="
echo ""
# Check if virtual environment exists
if [ ! -d ".venv" ]; then
echo "Virtual environment not found!"
echo "Please run ./setup_macos.sh first to set up the environment."
echo ""
exit 1
fi
# Activate virtual environment
source .venv/bin/activate
# Check if GUI file exists
if [ ! -f "GUI_pyqt6_WINFF.py" ]; then
echo "GUI_pyqt6_WINFF.py not found!"
echo "Make sure you are in the correct directory."
echo ""
exit 1
fi
# Run the PyQt6 version
echo "Starting FFmpeg GUI (PyQt6 version)..."
echo ""
python GUI_pyqt6_WINFF.py