-fixed synchronization of song-start to ui-start after very long playback (greater than 48 hours)

This commit is contained in:
martin 2011-02-24 15:16:27 -05:00
parent 810aa3845b
commit bf25de9ce4
2 changed files with 28 additions and 3 deletions

View file

@ -692,11 +692,16 @@ class Playout:
# Get any extra information for liquidsoap (which will be sent back to us)
liquidsoap_data = self.api_client.get_liquidsoap_data(pkey, schedule)
logger.debug("Sending additional data to liquidsoap: "+str(liquidsoap_data["schedule_id"]))
logger.debug("Sending additional telnet data to liquidsoap: "+str(liquidsoap_data["schedule_id"]))
#skip the currently playing song if any.
logger.debug("source.skip\n")
tn.write("source.skip\n")
#Sending JSON string. Example: {"schedule_id":"13"}
#Sending schedule table row id string.
logger.debug("vars.pypo_data %s\n"%(str(liquidsoap_data["schedule_id"])))
tn.write("vars.pypo_data %s\n"%(str(liquidsoap_data["schedule_id"])))
for line in pl_file.readlines():
line = line.strip()
logger.debug(line)