![]() |
|
Python and MythTV (a MythTV Front-End) - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Python Add-on Development (/forumdisplay.php?fid=26) +--- Thread: Python and MythTV (a MythTV Front-End) (/showthread.php?tid=2349) |
- LarryLeffa - 2004-09-26 15:05 (madtw @ sep. 17 2004,06:25 Wrote:i upgraded to mythtv 0.16 this evening and have uploaded a new version of the scripts. i haven't done a whole lot of testing but it appears to be working. you can grab it from the usual place. oddly enough, this release is version 0.13 that coincides with myth protocol version 13 that is supported by the latest mythtv.@madtv: damn good job! this is exactly what i'm looking for! :bowdown: using mythtv 0.16 as standalone-server, xbmc cvs and your xmbc_mythtv-0.13 here...working great! what about translations? i'm working now on german translation for your xbmc_mythtv. any plans to integrate language specific subdirs for the next version? will post when done translating... think, i'm done this afternoon (gmt+1)... - larry - LarryLeffa - 2004-09-26 20:23 just to let you know that translation to german language is finished (so far). had to include some very small changes to design. grab it here: xbmc_mythtv-0.13.01.tar.bz2 - larry - madtw - 2004-09-29 02:37 (larryleffa @ sep. 26 2004,12:23 Wrote:just to let you know that translation to german language is finished (so far). had to include some very small changes to design.thanks. i grabbed the file. i need to go through the code and change all hard coded text to do language lookups using xbmc.getlocalizedstring(). that's the proper way to do translations so that the code doesn't need to be modified. your translations will be useful for creating a german language file. - madtw - 2004-09-30 03:18 fyi... made a small bug fix. if you have problems quitting out of some screens (i.e. it doesn't let you go to the previous screen by hitting back), grab the latest version from the usual place. - ArtVandelay3 - 2004-10-02 03:00 what is the secret to getting a host value to 'stick' in settings? i can change/modify all the other values, but no matter what i put in host, it's always blank when i open settings back up. also tried putting it in the mytvsettings.py file, but it's still blank when i run the script and go to settings. i completely wiped out xbmc, and reinstalled it from the version avalaunch installs for you (1.0 (05.09)), so i'm assuming this is the september 5th release? running mythtv version 16 (so protocol 13, right?) i've installed xebian and mythtv frontend on my xbox already (so i know the connectivity to my backend works), but if i can avoid that one minute bootup and just use xbmc that would be great. well, i can watch them now using xbmc, but it's hard figuring out the show you want to watch with file names like 1047_20040930223000_20040930230000.nuv! thanks for any help on this... - madtw - 2004-10-02 07:45 that's odd... no one else has reported this problem. when you hit the back button on the controller or menu button on the controller, the settings screen writes out the settings to a file called mytv.xml in the xbmc application directory. if that isn't working then you can create the config file yourself and ftp it into the directory. here is a sample to help you get started: Quote:<mytv> yes, mythtv 0.16 uses protocol 13, 0.15 uses protocol 8. [edit] if you are running mythtv_xbmc-0.13, there was a close screen bug that might have caused an exception to be thrown so that the config file couldn't be saved. if you're using 0.14, then this sounds like a new problem. - s_jo03 - 2004-10-02 09:26 i have been using happily version 12 with mythtv 0.15 for some time now. however since the last three days, selecting 'recorded shows' or 'tv guide' returns an error popup 'time data did not match format: data=2400- '. selecting status works ok. mythfrontend on linux works correctly. thinking about a corrupted database, i have manually cleaned the database of any guide and shows data and ran mythfilldatabase again. still same error. i'm fine to upgrade to 0.16 and the latest xbmc_mythtv version, but does anybody think it will fix this ? pointers or suggestions to debug would be appreciated! - madtw - 2004-10-02 16:29 i think if you upgrade that you won't have those problems anymore. after upgrading to myth tv 0.16, i had date format errors as well so i ended up making some changes to the scripts. however, those changes only take effect if the protocol version is >= 13 because myth tv 0.15 seemed to be working fine. - ArtVandelay3 - 2004-10-02 17:51 ahh...i didn't know about the mytv.xml file! mine looked like this: Quote:<mytv> so i guess the host line got messed up somehow. i know i didn't manually edit it, but perhaps i screwed it up by going into the other .py files or something. anyway, i deleted it, went back to settings and fixed everything, and now it works just fine. thanks for the assistance! oh, and great work! this script is very cool. now i can save the 2.5gb or so of hd space that my xebian/mythtv frontend setup takes up on my xboxes. this will be especially handy on the one with the stock hard drive (for xbox live access). - LarryLeffa - 2004-10-03 12:06 (madtw @ sep. 29 2004,02:37 Wrote:thanks. i grabbed the file. i need to go through the code and change all hard coded text to do language lookups using xbmc.getlocalizedstring(). that's the proper way to do translations so that the code doesn't need to be modified. your translations will be useful for creating a german language file.well, if you need any further assistence/help for translating to german language (ie rewriting, completing, ...) just drop me a mail. will begin work quickly then. we're using your "plugin" day-by-day now. it's so easy and clearly now using xbmc to view/manage the mythtv-recordings; specially for my girlfriend. again, thanks for your work! |