1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 04:26:57 -05:00

Add Better EPG Logging

This commit is contained in:
deathbybandaid 2021-01-07 08:40:25 -05:00
parent cf64aecf7b
commit cd47fa0a3f
2 changed files with 6 additions and 4 deletions

View File

@ -278,16 +278,21 @@ class EPG():
programguide[cnum]["listing"][prog_index]["thumbnail"] = programguide[cnum]["thumbnail"]
prog_index += 1
# Get Totals
total_channels = len(list(programguide.keys()))
total_programs = 0
# Sort the channels
sorted_channel_list = channel_sort(list(programguide.keys()))
sorted_chan_guide = {}
for channel in sorted_channel_list:
total_programs += len(programguide[cnum]["listing"])
sorted_chan_guide[channel] = programguide[channel]
self.epgdict[method] = sorted_chan_guide
self.fhdhr.db.set_fhdhr_value("epg_dict", method, programguide)
self.fhdhr.db.set_fhdhr_value("update_time", method, time.time())
self.fhdhr.logger.info("Wrote " + epgtypename + " EPG cache.")
self.fhdhr.logger.info("Wrote %s EPG cache. %s Programs for %s Channels" % (epgtypename, total_programs, total_channels))
def run(self):
time.sleep(1800)

View File

@ -99,9 +99,6 @@ class Tuners():
stream_info = {"url": stream_info}
stream_args["stream_info"] = stream_info
if "quality_from_origin" not in list(stream_args["stream_info"].keys()):
stream_args["stream_info"]["quality_from_origin"] = False
if stream_args["stream_info"]["url"].startswith("udp://"):
stream_args["true_content_type"] = "video/mpeg"
stream_args["content_type"] = "video/mpeg"