2012-07-05, 17:51
Try to setup local time zone on your atv2 ))
def getNextProgram(self, program):
nextProgram = None
when = program.endDate + datetime.timedelta(minutes = 1)
c = self.conn.cursor()
c.execute('SELECT * FROM programs WHERE channel=? AND source=? AND start_date <= ? AND end_date >= ?', [program.channel.id, self.KEY, when, when])
row = c.fetchone()
if row:
nextProgram = Program(program.channel, row['title'], row['start_date'], row['end_date'], row['description'], row['image_large'], row['image_small'])
c.close()
return nextProgram
(2012-07-05, 19:59)shurikas Wrote: I know this But it's not a solution.
Example: if I combine two different xml guides into one with different time zones. Add-on show incorrect time on different channels.
(2012-07-19, 21:20)twinther Wrote: It's actually possible to select a stream from the favourites with the test build I uploaded some time ago:
http://forum.xbmc.org/showthread.php?tid...pid1131353
I got sidetracked with other projects but I'll try to return to this soon and make an update.
Let me know if this test version satisfies your needs
Br.
Tommy
(2012-07-21, 13:56)OldTerrier Wrote: I was just thinking, their seems to be quite a lot of us now hunting out feeds and creating strm files. Would it be advantageous to have a central database of these files ? I realize it is time consuming and it is not something I would expect Tommy to administer. Maybe a user page where all of us could update when we find new feeds,
I realize that there there are already people updating xmls for the livestreams/live tv addons but they seem to come and go, probably due to the begging and hassle from less advanced users. But i just thought it might be an idea and could save us all duplicating work.
Thoughts ?