@ -84,29 +84,33 @@ class Go2Rtc:
LNX = " https://github.com/AlexxIT/go2rtc/releases/download/v1.9.4/go2rtc_linux_amd64 "
def __init__ ( self , port = 1984 ) - > None :
self . logger = create_logger ( Go2Rtc . __name__ )
self . port = port
self . enabled = False
try :
self . check_exists ( )
self . logger . info ( " Go2rtc support enabled " )
except :
print ( " g o2rtc is disabled" )
self . logger . error ( " G o2rtc is disabled" )
pass
def check_exists ( self ) :
go2rtc_directory = os . path . join ( app_dir ( ) , " go2rtc " )
if os . path . exists ( go2rtc_directory ) :
print ( " Go2Rtc directory exists " )
self . logger . debug ( " Go2Rtc directory exists " )
if platform . system ( ) == " Windows " and os . path . exists ( os . path . join ( go2rtc_directory , " go2rtc.exe " ) ) :
print ( " [WIN] Go2Rtc is exists, continue create config " )
self . logger . debug ( " [WIN] Go2Rtc is exists, continue create config " )
self . exec = os . path . join ( go2rtc_directory , " go2rtc.exe " )
self . enabled = True
elif platform . system ( ) == " Linux " and os . path . exists ( os . path . join ( go2rtc_directory , " go2rtc " ) ) :
print ( " [LNX] Go2Rtc is exists, continue create config " )
self . logger . debug ( " [LNX] Go2Rtc is exists, continue create config " )
self . exec = os . path . join ( go2rtc_directory , " go2rtc " )
self . enabled = True
else :
self . logger . error ( f " Unknown platform: { platform . system ( ) } " )
raise Exception ( f " go2rtc not downloaded, windows: { self . WIN } linux: { self . LNX } " )
else :
self . logger . warning ( " Go2Rtc not found, he is disabled " )
raise Exception ( " Go2Rtc not found, he is disabled " )
#http://localhost:1984/go2rtc/stream.html?src=0_0_0
@ -127,7 +131,7 @@ class Go2Rtc:
lines + = Go2RtcChannel ( recorder , 2 ) . generate_lines ( )
cfg_file = os . path . join ( app_dir ( ) , " go2rtc " , " go2rtc.yaml " )
print ( f " go2rtc config: { cfg_file } " )
self . logger . debug ( f " go2rtc config: { cfg_file } " )
async with aiofiles . open ( cfg_file , " w " , encoding = " utf8 " ) as cfg :
await cfg . write ( lines )
@ -140,34 +144,35 @@ class TranscodeTools:
WIN32PYTHON = " python-win32 "
def __init__ ( self , tools_directory , transcode_directory , hide_checks = True ) - > None :
self . logger = create_logger ( TranscodeTools . __name__ )
self . hide_checks = hide_checks
self . tools_directory = tools_directory
self . transcode_directory = transcode_directory
if not os . path . exists ( tools_directory ) :
print ( " download git repo https://git.pblr-nyk.pro/gsd/MiskaRisa264 and place in backend folder to enable transcode tools " )
self . logger . error ( " download git repo https://git.pblr-nyk.pro/gsd/MiskaRisa264 and place in backend folder to enable transcode tools " )
self . enabled = False
else :
python_win32_exists = self . python_win32_exists
if not python_win32_exists :
print ( " download https://www.python.org/ftp/python/3.12.3/python-3.12.3-embed-win32.zip and unzip in backend/MiskaRisa/python-win32 all contains files " )
self . logger . error ( " download https://www.python.org/ftp/python/3.12.3/python-3.12.3-embed-win32.zip and unzip in backend/MiskaRisa/python-win32 all contains files " )
check_exists_needed_files = self . check_exists_needed_files
if not check_exists_needed_files :
print ( " MiskaRisa264 is not fully downloaded, watch in directory to find lost files " )
self . logger . error ( " MiskaRisa264 is not fully downloaded, watch in directory to find lost files " )
check_ffmpeg = self . check_ffmpeg ( )
if not check_ffmpeg :
print ( " ffmpeg in not installed on system or on windows in not in PATH env " )
self . logger . error ( " ffmpeg in not installed on system or on windows in not in PATH env " )
check_converter = self . check_converter ( )
if not check_converter :
print ( " failed run h264_converter.py with python-win32 " )
self . logger . error ( " failed run h264_converter.py with python-win32 " )
self . enabled = check_exists_needed_files and python_win32_exists and check_ffmpeg and check_converter
if not self . enabled :
print ( " Cannot enabled transcode tools, have a errors on init, run config_parser with --no-hide-check parameters to more info " )
self . logger . error ( " Cannot enabled transcode tools, have a errors on init, run config_parser with --no-hide-check parameters to more info " )
print ( " Transcode tools " , " enabled " if self . enabled else " disabled " )
self . logger . info ( " Transcode tools " + " enabled " if self . enabled else " disabled " )
@property
def check_exists_needed_files ( self ) :
@ -219,7 +224,7 @@ class TranscodeTools:
exec_string . append ( self . converter_script )
exec_string . append ( source_file )
print ( " execute " , exec_cmd , exec_string )
self . logger . debug ( f " execute { exec_cmd } { exec_string } " )
proc = await asyncio . create_subprocess_exec ( exec_cmd , * exec_string )
await proc . communicate ( )
@ -232,7 +237,7 @@ class TranscodeTools:
async def avitomp4 ( self , source_file , delete_source_file = False ) :
exec_string = [ " -y " , " -i " , source_file , " -movflags " , " faststart " , f " { source_file } .mp4 " ]
print ( " execute " , exec_string )
self . logger . debug ( f " execute { exec_string } " )
proc = await asyncio . create_subprocess_exec ( " ffmpeg " , * exec_string )
await proc . communicate ( )
@ -264,17 +269,17 @@ class TranscodeTools:
return
if not os . path . exists ( raw_file ) or os . path . getsize ( raw_file ) != file . size :
print ( " save raw file to " , raw_file )
self . logger . debug ( f " save raw file to { raw_file } " )
async with aiofiles . open ( raw_file , " wb " ) as raw :
self . statuses [ status . b64 ] . total_h264_bytes = file . size
async for chunk in nvr . stream_file ( file ) :
self . statuses [ status . b64 ] . downloaded_h264_bytes + = len ( chunk )
self . statuses [ status . b64 ] . h264 = round ( 100 * self . statuses [ status . b64 ] . downloaded_h264_bytes / self . statuses [ status . b64 ] . total_h264_bytes )
await raw . write ( chunk )
print ( " raw file is downloaded " )
self . logger . debug ( " raw file is downloaded " )
else :
print ( " File already content on server " )
print ( " logout from nvr, he is not more needed " )
self . logger . debug ( " File already content on server " )
self . logger . debug ( " logout from nvr, he is not more needed " )
nvr . logout ( )
self . statuses [ status . b64 ] . avi = 0
@ -282,16 +287,16 @@ class TranscodeTools:
if not os . path . exists ( avi_file ) or reCreate :
avi_file = await self . h264toavi ( raw_file )
else :
print ( " file avi format already exitst " )
self . logger . debug ( " file avi format already exitst " )
self . statuses [ status . b64 ] . avi = 100
self . statuses [ status . b64 ] . mp4 = 0
mp4_file = avi_file + " .mp4 "
if not os . path . exists ( mp4_file ) or reCreate :
mp4_file = await self . avitomp4 ( avi_file )
mp4_file = await self . avitomp4 ( avi_file , True )
else :
print ( " file mp4 format already exists " )
self . logger . debug ( " file mp4 format already exists " )
self . statuses [ status . b64 ] . mp4 = 100
self . statuses [ status . b64 ] . outFile = mp4_file
@ -310,6 +315,7 @@ class TranscodeTools:
class Config :
def __init__ ( self , config_name = " config.json " , args = None ) - > None :
self . logger = create_logger ( Config . __name__ )
raw = load_config ( config_name ) if args == None or not args . err_check else { }
self . listen_address = raw . get ( " backend " , { } ) . get ( " address " , " 0.0.0.0 " )
self . listen_port = int ( raw . get ( " backend " , { } ) . get ( " port " , " 8080 " ) )
@ -319,10 +325,10 @@ class Config:
self . recorders . append ( Recorder ( raw_server . get ( " ip " ) , raw_server . get ( " port " ) , raw_server . get ( " user " ) , raw_server . get ( " password " ) , raw_server . get ( " name " , " " ) , index = i ) )
i + = 1
if ( self . recorders . __len__ ( ) == 0 ) :
print ( " Recorders not find " )
self . logger . warning ( " Recorders not find " )
else :
for recorder in self . recorders :
print ( recorder )
self . logger . info ( recorder )
self . transcode_tools : TranscodeTools = self . check_transcode_tools ( not args . no_hide_check if args != None else True )
def getRecorder ( self , index = 0 ) - > Recorder :