![]() |
|
New MythTV add-on using libcmyth - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: PVR Development (/forumdisplay.php?fid=136) +--- Thread: New MythTV add-on using libcmyth (/showthread.php?tid=110694) Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
RE: New MythTV add-on using libcmyth - InoD - 2012-05-06 22:26 There is something else I'd like to look into too. (oh, what have I gotten myself into ) When resuming from standby I get some strange behaviour from the PVR addon. The recordings list is not updated, I sometimes cannot play any recordings and while playing another video I get notifications frequently that recordings are finished or deleted, which is obviously not the case. Not sure if this is related to the mythtv addon specifically or to the PVR system as a whole. Does anyone recognize this? RE: New MythTV add-on using libcmyth - tsp42 - 2012-05-06 22:55 I suspect that it is because the connection(socket) to the backend is broken when resuming from standby. Currently there is no code to try reestablishing the connection. The libcmyth code that has to be updated. We/I need to add a new function to update the cmyth_conn_t struct. Any help will of course be highly appreciated. As you may have discovered it can be quite time consuming to fix all these bugs. RE: New MythTV add-on using libcmyth - InoD - 2012-05-06 23:07 Ok, I'll have a look at how this is implemented best. Will probably take some time though.... RE: New MythTV add-on using libcmyth - bilbonvidia - 2012-05-09 15:18 (2012-05-06 21:08)tsp42 Wrote: bilbonvidia: Does it lockup when the program changes like fiveisalive is seeing or when you start xbmc? It is when changing channel. I am currently running on the last commit before timeshift. Let me know if you want me to upgrade again to try anything testing wise. RE: New MythTV add-on using libcmyth - bas.t - 2012-05-10 08:15 EDIT: This is not relevant anymore. I think commit 91bfc4eaed took care of this. Hi, I'm trying to compile but I get errors: Code: CPP xbmc/guilib/GUIListItemLayout.oI am compiling on Debian Squeeze. Opdenkamps repo compiles just fine. What can I do to prevent these errors? RE: New MythTV add-on using libcmyth - dteirney - 2012-05-10 11:05 @bas.t you need to upgrade libboost to 1.46 or later. RE: New MythTV add-on using libcmyth - Powderking - 2012-05-10 12:44 I'm still following your build and still use it as my frontend. I wanted to say again thank you for your work! It's great to see it developping ![]() I was amazed when I saw that preview and channel pics work now when the backend is on a different machine. And the categories are wonderful too ![]() Even though I have three little issues: The categories aren't always perfect. E.g. I have a movies category where I have lots of recordings. But none of them is a movie. I understand that you sort them by program title only. But mythfrontend does it somehow different. I have a much better categroization there. Will you be able to change that someday or is this a limitation of the cmyth library? The next issue is when I enter this movies category (in fact any with a large number of recordings) it takes minutes until the recordings are listed. I read something about that it downloads all the covers. Has this to do with it? And the last thing is that I like to have the newest recordings on the top. But When I sort one category the others aren't affected. Would it be possible to implement a menu entry or something that sets everything to be sorted be date? Thank you again very much for your great work! RE: New MythTV add-on using libcmyth - lunarok - 2012-05-11 11:03 Hi, I read with attention your work, but I cannot use your git repo for compiling as I'm using MythTV 0.25. And this is going to be common as it's the version include in Ubuntu 12.04, so the version of Mythbuntu too. But Daniel Teirney has patched the cmyth for support of MythTV 0.25 (https://github.com/dteirney/xbmc/tree/myth-0.25) And seems it has been pull to the main branch of XBMC git (https://github.com/xbmc/xbmc cmyth 19 hours ago [cmyth] Fix memory corruption caused by incorrect size allocation for… [David Teirney]) Is it possible to merge your lib directory from the xbmc git so we will have the new version of cmyth and support of 0.25 ? As your addon is full cmyth based, must be enough to get xbmc-pvr working with myth 0.25 Am I wrong ? RE: New MythTV add-on using libcmyth - Jimmer - 2012-05-11 12:15 (2012-05-11 11:03)lunarok Wrote: Hi, five has managed it here: http://forum.xbmc.org/showthread.php?tid=129021&pid=1098065#pid1098065 it needs a file patching, and this was done a little while ago, but it may still be working. Probably better to wait a few days for it to get merged into Dushmaniac, and then again here. It'll happen soon, I'm sure RE: New MythTV add-on using libcmyth - fiveisalive - 2012-05-12 17:49 (2012-05-11 12:15)Jimmer Wrote:(2012-05-11 11:03)lunarok Wrote: Hi, I tested patching tsp's cmyth branch with the myth-0.25 patch and I have it "working" in the sense that it loads the EPG and channel info. I tested this on a separate machine with no video card, using the "dummy tuner" module built into the mythbackend, so I was unable to test Live TV or recording playback, but at least the EPG/schedule and channel info loads correctly, which is generally a good sign. |