mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
import faulthandler
|
|
import logging
|
|
import multiprocessing
|
|
import os
|
|
import platform
|
|
import sys
|
|
|
|
from appdirs import user_log_dir
|
|
|
|
# Check for segfaults if not running in frozen mode
|
|
if getattr(sys, 'frozen', False) is False:
|
|
faulthandler.enable()
|
|
|
|
|
|
# Adds the current directory to the PATH, so the ffmpeg binary get picked up:
|
|
# https://stackoverflow.com/a/44352931/9830227
|
|
app_dir = getattr(sys, '_MEIPASS', os.path.dirname(
|
|
os.path.abspath(__file__)))
|
|
os.environ["PATH"] += os.pathsep + app_dir
|
|
|
|
# Add the app directory to the DLL list: https://stackoverflow.com/a/64303856
|
|
if platform.system() == 'Windows':
|
|
os.add_dll_directory(app_dir)
|
|
|
|
if __name__ == "__main__":
|
|
# Fixes opening new window when app has been frozen on Windows:
|
|
# https://stackoverflow.com/a/33979091
|
|
multiprocessing.freeze_support()
|
|
|
|
log_dir = user_log_dir(appname='Buzz')
|
|
os.makedirs(log_dir, exist_ok=True)
|
|
logging.basicConfig(
|
|
filename=os.path.join(log_dir, 'logs.txt'),
|
|
level=logging.DEBUG,
|
|
format="[%(asctime)s] %(module)s.%(funcName)s:%(lineno)d %(levelname)s -> %(message)s")
|
|
|
|
from gui import Application
|
|
app = Application()
|
|
sys.exit(app.exec())
|