continue working on change to correct playlist

This commit is contained in:
jb-alvarado 2018-01-08 13:33:33 +01:00
parent ad18d49c0f
commit 67a41b9dce

View File

@ -165,8 +165,8 @@ def check_path(f_o_l, in_file, duration, seek_t):
elif f_o_l == 'dummy_l': elif f_o_l == 'dummy_l':
error_message = 'XML Playlist is not valid!' error_message = 'XML Playlist is not valid!'
if not in_path.is_file() or f_o_l == 'dummy_l' or f_o_l == 'dummy_p': if not in_path.is_file() or f_o_l == 'dummy_l' or f_o_l == 'dummy_c':
if f_o_l != 'dummy_p': if f_o_l != 'dummy_c':
send_mail(error_message, in_path) send_mail(error_message, in_path)
out_path = [ out_path = [
@ -195,7 +195,7 @@ def check_path(f_o_l, in_file, duration, seek_t):
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# read values from xml playlist # read values from xml playlist
def get_from_playlist(last_time, list_date, seek_in_clip): def get_from_playlist(last_time, list_date, seek_clip):
# path to current playlist # path to current playlist
l_y, l_m, l_d = re.split('-', list_date) l_y, l_m, l_d = re.split('-', list_date)
c_p = '{}/{}/{}/{}.xml'.format(_playlist.path, l_y, l_m, list_date) c_p = '{}/{}/{}/{}.xml'.format(_playlist.path, l_y, l_m, list_date)
@ -211,7 +211,7 @@ def get_from_playlist(last_time, list_date, seek_in_clip):
except ExpatError: except ExpatError:
src_cmd = check_path('dummy_l', c_p, 300, 0.00) src_cmd = check_path('dummy_l', c_p, 300, 0.00)
return src_cmd, last_time, list_date, seek_in_clip return src_cmd, last_time, list_date, seek_clip
clip_ls = xmldoc.getElementsByTagName('video') clip_ls = xmldoc.getElementsByTagName('video')
@ -230,23 +230,23 @@ def get_from_playlist(last_time, list_date, seek_in_clip):
clip_in = re.sub('s', '', clip_ls[i].attributes['in'].value) clip_in = re.sub('s', '', clip_ls[i].attributes['in'].value)
tmp_dur = float(clip_dur) - float(clip_in) tmp_dur = float(clip_dur) - float(clip_in)
clip_start = _playlist.start * 3600 - 5
list_date = cur_ts('t_date', 'today')
get_time = cur_ts('t_full', '0')
if tmp_dur > 6.00: if tmp_dur > 6.00:
src_cmd = check_path('file', clip_path, clip_dur, clip_in) src_cmd = check_path('file', clip_path, clip_dur, clip_in)
elif tmp_dur > 1.00: elif tmp_dur > 1.00:
src_cmd = check_path('dummy_c', clip_path, tmp_dur, 0.00) src_cmd = check_path('dummy_c', clip_path, tmp_dur, 0.00)
else: else:
src_cmd = check_path('dummy_c', clip_path, 1, 0.00) src_cmd = 'next'
clip_start = _playlist.start * 3600 - 5
list_date = cur_ts('t_date', 'today')
get_time = cur_ts('t_full', '0')
# check if we are in time # check if we are in time
if int(get_time) > int(clip_start) + 10: if int(get_time) > int(clip_start) + 10:
send_mail('we are out of time...:', get_time) send_mail('we are out of time...:', get_time)
# all other clips in playlist # all other clips in playlist
elif seek_in_clip is True: elif seek_clip is True:
# first time we end up here # first time we end up here
if float(last_time) < float(clip_start) + float(clip_dur): if float(last_time) < float(clip_start) + float(clip_dur):
# calculate seek time # calculate seek time
@ -255,32 +255,38 @@ def get_from_playlist(last_time, list_date, seek_in_clip):
src_cmd = check_path('file', clip_path, clip_len, seek_t) src_cmd = check_path('file', clip_path, clip_len, seek_t)
seek_in_clip = False seek_clip = False
break break
else: else:
if float(last_time) < float(clip_start): if float(last_time) < float(clip_start):
src_cmd = check_path('file', clip_path, clip_dur, 0.00) src_cmd = check_path('file', clip_path, clip_dur, 0.00)
break break
return src_cmd, clip_start, list_date, seek_in_clip return src_cmd, clip_start, list_date, seek_clip
# independent thread for clip preparation # independent thread for clip preparation
def play_clips(out_file): def play_clips(out_file):
if cur_ts('t_full', '0') > 0 and cur_ts('t_full', '0') < _playlist.start: if cur_ts('t_full', '0') > 0 and \
cur_ts('t_full', '0') < int(_playlist.start) * 3600:
last_time = int(cur_ts('t_full', '0')) + 86400 last_time = int(cur_ts('t_full', '0')) + 86400
else: else:
last_time = cur_ts('t_full', '0') last_time = cur_ts('t_full', '0')
list_date = cur_ts('t_date', '0') list_date = cur_ts('t_date', '0')
seek_in_clip = True seek_clip = True
# infinit loop # infinit loop
# send current file from xml playlist to stdin from buffer # send current file from xml playlist to stdin from buffer
while True: while True:
try: try:
src_cmd, last_time, list_date, seek_in_clip = get_from_playlist( src_cmd, last_time, list_date, seek_clip = get_from_playlist(
last_time, list_date, seek_in_clip last_time, list_date, seek_clip
)
if src_cmd == 'next':
src_cmd, last_time, list_date, seek_clip = get_from_playlist(
last_time, list_date, seek_clip
) )
# tm_str = str(timedelta(seconds=int(float(last_time)))) # tm_str = str(timedelta(seconds=int(float(last_time))))