![]() |
|
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 - chrisgibbs - 2012-05-01 09:45 (2012-04-29 21:45)tsp42 Wrote:(2012-04-26 20:48)bilbonvidia Wrote:Could you and fiveisalive pastebin a debug log from when it happends. The addtion of the forward/reverse buttons tothe skin was a bit rushed. That's why the order is wrong. Will have to fix it.(2012-04-26 17:06)fiveisalive Wrote: Yep, live TV working again. Thank you! I can also confirm that this error is happening to me too. Do you have enough to work with the existing debug logs or would you like more? RE: New MythTV add-on using libcmyth - tdavis - 2012-05-01 18:30 I just upgraded to 0.25, so I'm now waiting for support for that.. RE: New MythTV add-on using libcmyth - tsp42 - 2012-05-01 23:39 (2012-05-01 09:45)chrisgibbs Wrote:It's enough with bilbonvidia's log thanks. Just need time to find the error now.(2012-04-29 21:45)tsp42 Wrote:I can also confirm that this error is happening to me too. Do you have enough to work with the existing debug logs or would you like more?(2012-04-26 20:48)bilbonvidia Wrote: Live tv working for me too thanks! but I have the same problem with changing channel as above, xbmc crashes. Pressing stop and changing from epg is okay. I also see the same behaviour with the time shift buttons reported earlier , ie being in the wrong order when being selected.Could you and fiveisalive pastebin a debug log from when it happends. The addtion of the forward/reverse buttons tothe skin was a bit rushed. That's why the order is wrong. Will have to fix it. RE: New MythTV add-on using libcmyth - jht3 - 2012-05-03 02:45 testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work
RE: New MythTV add-on using libcmyth - OzSpeedway - 2012-05-03 06:36 Was just wondering if it is possible to just compile the cmyth addon and add it to my current PVR install? I have the compiled version of XBMC from pulse-eight. Any pointers appreciated if it is at all possible.... Cheers Bruce RE: New MythTV add-on using libcmyth - InoD - 2012-05-03 08:41 (2012-05-03 02:45)jht3 Wrote: testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work I had noticed the same thing and it was due to the regular expression used to split folder and title for series (PVR addon configuration). For me, the regular expression was set to Code: ^(?<folder>.+?)::(?<title>.+?)Code: ^(?<folder>.+?)::(?<title>.+)RE: New MythTV add-on using libcmyth - jht3 - 2012-05-03 15:16 (2012-05-03 08:41)InoD Wrote:(2012-05-03 02:45)jht3 Wrote: testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work that worked! thanks. i figured it was that regex and someone had seen this before RE: New MythTV add-on using libcmyth - andyb2000 - 2012-05-03 20:31 Hi all, Got a self-compile setup running nicely on my XBMC system here, pulled the src from git, compiled with: "./configure --prefix=/usr --enable-vdpau --enable-static --disable-shared --enable-sdl --enable-rtmp" And looking pretty good, channels look fine, except for one problem, in the EPG TIMELINE view (the normal view we use at home) any channel that doesn't have an EPG listing (for example the majority of music channels in the UK don't have EPG entries), then this isn't displayed. Is there a way to force this? I tried this some time ago with TVHeadend and never found a solution. Anyone can sort this for me or let me know the patch/code to modify? RE: New MythTV add-on using libcmyth - tsp42 - 2012-05-04 14:38 The channel switching should work now. It is a little slower than before(8 sec vs. 7 sec. on my setup) but at least it doesn't lockup. (2012-05-03 06:36)OzSpeedway Wrote: Was just wondering if it is possible to just compile the cmyth addon and add it to my current PVR install? I have the compiled version of XBMC from pulse-eight. Any pointers appreciated if it is at all possible....Not really. I've modified the xbmc PVR code several places so you will have to merge the changes into the XBMC pulse-eight code. (2012-05-03 08:41)InoD Wrote:The default value should be fixed now.(2012-05-03 02:45)jht3 Wrote: testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work (2012-05-03 20:31)andyb2000 Wrote: Hi all,Not what I'm aware of. I thought you found the place in the code to fix it? RE: New MythTV add-on using libcmyth - InoD - 2012-05-04 20:41 Ah, great. I will build a new version to test channel switching. Do you happen to know if a myth:// source honours the video file list setting concerning automatic thumbnail creation from metadata? I see some reports that the strange crashes are related to automatic thumbnail generation, but when I disable that for video files, the crash doesn't disappear. |