Commit f60d38f1 authored by liyuanhong's avatar liyuanhong

兼容了mac部分崩溃问题

parent 507d95de
#coding: utf-8
import binascii
import json
import platform
import re
import sys
import time
......@@ -401,6 +402,13 @@ class StreamH264Flv():
timeCur = "[" + timeCur + "] "
return timeCur
####################################################
# 获取操作系统名字
####################################################
def getOsName(self):
osName = platform.system()
return osName
if __name__ == "__main__":
obj = StreamH264Flv()
......
......@@ -6,5 +6,5 @@ camera_2 = None # 相机2
camera_3 = None # 相机3
eventArea = None # 事件发送对象
isLogRedirect = 0 # 日志是否重定向到日志文本框 0: 不重定向 (用于调试) 1:重定向 (用于给别人用)
isLogRedirect = 1 # 日志是否重定向到日志文本框 0: 不重定向 (用于调试) 1:重定向 (用于给别人用)
scriptPath = "" # 脚本执行的目录
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment