86 Star 1.1K Fork 149

小方 / Macast

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Macast.py 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
小方 提交于 2022-01-12 06:58 . Clear log file at start
# Copyright (c) 2021 by xfangfang. All Rights Reserved.
import os
import sys
import gettext
import logging
from macast import Setting, SETTING_DIR
from macast.macast import gui
logger = logging.getLogger("Macast")
logger.setLevel(logging.DEBUG)
def get_base_path(path="."):
if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS'):
base_path = sys._MEIPASS
else:
base_path = os.getcwd()
return os.path.join(base_path, path)
def set_mpv_default_path():
mpv_path = 'mpv'
if sys.platform == 'darwin':
mpv_path = get_base_path('bin/MacOS/mpv')
elif sys.platform == 'win32':
mpv_path = get_base_path('bin/mpv.exe')
Setting.mpv_default_path = mpv_path
return mpv_path
def get_lang():
locale = Setting.get_locale()
i18n_path = get_base_path('i18n')
if not os.path.exists(os.path.join(i18n_path, locale, 'LC_MESSAGES', 'macast.mo')):
locale = locale.split("_")[0]
logger.error("Macast Loading Language: {}".format(locale))
try:
lang = gettext.translation('macast', localedir=i18n_path, languages=[locale])
lang.install()
except Exception:
import builtins
builtins.__dict__['_'] = gettext.gettext
logger.error("Macast Loading Default Language en_US")
def clear_env():
# todo clear pyinstaller file on start
log_path = os.path.join(SETTING_DIR, 'macast.log')
try:
os.remove(log_path)
except:
pass
if __name__ == '__main__':
clear_env()
get_lang()
set_mpv_default_path()
gui(lang=_)
Python
1
https://gitee.com/xfangfang/Macast.git
git@gitee.com:xfangfang/Macast.git
xfangfang
Macast
Macast
main

搜索帮助