We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00db41f commit 922981bCopy full SHA for 922981b
3 files changed
.DS_Store
0 Bytes
.gitignore
@@ -40,4 +40,5 @@ version_info.txt
40
41
# Lock files
42
package-lock.json
43
-Pipfile.lock
+Pipfile.lock
44
+.DS_Store
build_windows.py
@@ -49,7 +49,8 @@ def build_windows_exe():
49
pyinstaller_cmd = [
50
'pyinstaller',
51
'--onefile', # Single executable file
52
- '--console', # Keep console for cross-platform compatibility
+ #'--console', # Keep console for cross-platform compatibility
53
+ '--windowed', # No console window
54
'--name=FFmpeg_GUI_Windows_AMD64',
55
'--add-data=utils_safe_extract.py' + (';.' if sys.platform == 'win32' else ':.'),
56
'--hidden-import=PyQt6.QtCore',
0 commit comments