![]() |
|
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 - Jimmer - 2012-04-22 21:15 (2012-04-22 20:40)tsp42 Wrote: New update. Timeshift is working now! My god! I can't keep up! You continue to make my favourite software even more favourite! RE: New MythTV add-on using libcmyth - dubstar_04 - 2012-04-22 21:17 (2012-04-22 21:15)Jimmer Wrote:(2012-04-22 20:40)tsp42 Wrote: New update. Timeshift is working now! tsp42, Thank you for all the work you do on this add-on. Dubstar_04 RE: New MythTV add-on using libcmyth - bilbonvidia - 2012-04-23 00:14 I gave mythtv 0.25 along with the other mythtv xbmc ago but decided to switch back. I uninstalled mythtv and reinstalled 0.24 and then installed this xbmc from scratch but I am having an issue with live tv, xbmc just hangs, the epg populates okay. Here is my pastebin log http://pastebin.com/symMcwme Any suggestions? RE: New MythTV add-on using libcmyth - tdavis - 2012-04-23 03:08 (2012-04-22 13:37)tsp42 Wrote: I use the following regex to extract the foldername before the episode number and use the episode number or the part of the title after the episode as the title: slight typo, I think; it should be: Code: ^(?<folder>.+?)(\([[:digit:]]+\):(?<title>.+)$|\((?<title>.+?)\))So, I've got a weird one... two different series, almost the same title; one is called California's Gold and the other is California's Golden Parks I get a subfolder in the California's Gold folder with the name of "en Parks". The regex I use is: Code: ^(?<folder>.+)::(?<title>.+)Other than that, thanks for the changes! RE: New MythTV add-on using libcmyth - kenzu - 2012-04-23 10:48 Does crystalhd work with livetv? RE: New MythTV add-on using libcmyth - fiveisalive - 2012-04-23 16:40 (2012-04-23 03:08)tdavis Wrote: slight typo, I think; it should be: Interesting that it matches the first program, and assumes that the rest is the subtitle. (PS. Go Huell Howser!) RE: New MythTV add-on using libcmyth - fiveisalive - 2012-04-23 17:38 OK, got the new branch. Greedy download has stopped and I can see thumbnails per episode, but it's not downloading fanart/thumbs at the series/folder level as far as I can tell (still have default icons and no background). Is there something special I need to enable? RE: New MythTV add-on using libcmyth - tdavis - 2012-04-23 17:59 (2012-04-23 16:40)fiveisalive Wrote:(2012-04-23 03:08)tdavis Wrote: slight typo, I think; it should be: Nothing that I record has an episode number in it.. It could be the fact that Schedules Direct does not put them in the title, and I've not set myth to add them either. Quote:(PS. Go Huell Howser!)
RE: New MythTV add-on using libcmyth - Jimmer - 2012-04-23 20:06 I can confirm the fanart/poster is no longer working as of the latest batch of commits. I usually use ReFocus, but switch to Confluence now and again to check out tsp specific features! That's when I noticed it was no longer pulling it in.... I also can't get anywhere with the newer regexp.... I too, have no episode number, so I thought I'd try out tdavis's suggestion - looks like it should split at the subtitle, but it doesn't work for me! I'm going to have to do a regexp primer to get myself up to speed.... RE: New MythTV add-on using libcmyth - tdavis - 2012-04-23 20:36 Once you've changed the regex, there is two ways to get it to apply.. 1) restart xbmc. This takes the longest, but it's guaranteed to work. 2) double click on the Recordings tab if your still using the original theme. |