You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If moviepy is used with cx_freeze as a win32gui app (I think py2exe has the same issues) there is always a black console window opened when the popen calls are made.
This can be suppressed by setting the Popen parameter creationflags=0x08000000 (CREATE_NO_WINDOW).
I think this is a windows only parameter and this must be handled seperately for win/linux.
The text was updated successfully, but these errors were encountered:
If moviepy is used with cx_freeze as a win32gui app (I think py2exe has the same issues) there is always a black console window opened when the popen calls are made.
This can be suppressed by setting the Popen parameter creationflags=0x08000000 (CREATE_NO_WINDOW).
I think this is a windows only parameter and this must be handled seperately for win/linux.
The text was updated successfully, but these errors were encountered: