![]() |
EPG Timeline Empty - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: PVR & Live TV Support (https://forum.kodi.tv/forumdisplay.php?fid=167) +---- Forum: MythTV (https://forum.kodi.tv/forumdisplay.php?fid=170) +---- Thread: EPG Timeline Empty (/showthread.php?tid=178804) |
EPG Timeline Empty - killachaos - 2013-11-24 I've recently installed XBMC (Frodo Stable) + MythTvPVR (dev e6e61904c714ae6075c8c7fbadfa9a20b9115724) on my OS X 10.7 Lion Machine. Mostly everything works thus far and I can import the channels from the MythTv Backend to XBMC. However the EPG Timeline is empty and it isn't clear how to populate it. Currently the MythTv Frontend links with SchedulesDirect but I'm unsure how to get this functionality into XBMC. RE: EPG Timeline Empty - nickr - 2013-11-25 It should populate from the backend if everything is set up right. Not in front of mine now, but what options do you have configured? RE: EPG Timeline Empty - killachaos - 2013-11-25 Not sure which options you were referring to so I will list everything (skipping some stuff that is default) MythTv Settings: Code: CableTV Info: XBMC Code: MythTv: (V. https://github.com/fetzerch/xbmc-pvr-addons/commit/e6e61904c714ae6075c8c7fbadfa9a20b9115724), 1.6.13 IIRC) Code: XBMC (Frodo, OSX, Stable (as in downloaded from xbmc.org homepage)) I think thats all the relevant info. I'll also try poking around in mysql. For the record the EPG in MythFrontend works. After poking around in the logs my error could be related to: Code: 20:54:29 T:140735219620192 DEBUG: CGUIEPGGridContainer - SetStartEnd - start=11/25/2013 4:30:00 AM end=12/31/1969 11:30:00 PM Not sure how to fix it. RE: EPG Timeline Empty - killachaos - 2013-11-25 Fixed it finally. After digging in the code finally figured out the problem. Explaining for Google's sake. XBMC Frodo, Mac OS X Lion, EPG Electronic Programming Guide Empty
On OSX instead of running the command listed in the mythtv wiki run this: Code: mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql Code: mysql_tzinfo_to_sql /usr/share/zoneinfo | sed "s/'Local time zone must be set--see zic manual page'/'UNSET'/g" | mysql -u root -p mysql What this does is fixes the SQL that comes from mysql_tzinfo_to_sql by replacing the offending data with 'UNSET'. After this is done, run mythfill again and restart xbmc and the guide should work. Re: EPG Timeline Empty - nickr - 2013-11-25 Well I never would have found that! |