![]() |
|
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-23 20:40 (2012-04-23 20:36)tdavis Wrote: Once you've changed the regex, there is two ways to get it to apply.. Sure, but it still doesn't work for me! I'm wondering if you have a different title/subtitle thing going on to me? RE: New MythTV add-on using libcmyth - tdavis - 2012-04-23 20:41 I dunno. I can check it later tonight to see if maybe I got it wrong.. Here's the doc page for the regex: http://www.boost.org/doc/libs/1_49_0/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html RE: New MythTV add-on using libcmyth - tsp42 - 2012-04-23 21:29 Does your regex settings looks like this: ![]() Jimmer+FiveIsAlive: Do you use the storagegroup option in the MythTV backend TDavis: Strange result. Will check if I missed something in the regex code. RE: New MythTV add-on using libcmyth - nobleach - 2012-04-23 21:33 (2012-04-23 10:48)kenzu Wrote: Does crystalhd work with livetv? There are still some folks working on getting it to work. The problem is with FFMpeg not being able to pass the MPEG2 transport stream off to a hardware decoder. I don't even think it was this forum where I read about this. It could have been OpenElec on AppleTV or somewhere else. -nobleach RE: New MythTV add-on using libcmyth - InoD - 2012-04-23 21:36 Great update! Unfortunately suspend stopped working for me (nothing happens), so switched back to my previous build while building latest OpenELEC in the meantime. It does seem my issue with myth:// protocol is still there. Could you look into that tsp? Thanks! RE: New MythTV add-on using libcmyth - tdavis - 2012-04-23 21:57 Ahh.. I might be missing a few '?' in the regex I've posted. try: Code: ^(?<folder>.+?)::(?<title>.+?)RE: New MythTV add-on using libcmyth - Jimmer - 2012-04-24 00:11 (2012-04-23 21:57)tdavis Wrote: Ahh.. I might be missing a few '?' in the regex I've posted. Nope, that's still not getting it for me either..... well, it gets things sorted into their respective folders now, but all the entries in the sub-folder are single letters For instance Homeland::Representative Brody is Homeland |--------- R Which is almost perfect, but if you have more than one episode with the same starting letter! As for storage directories, I have separate fanart, coverart and banner folders which I run jamu as a cron job to populate. The artwork was working from these directories prior to the new commits and it still works just fine in mythfrontend...... Edit: Seems that the artwork is correctly pulled for items in the Movies subdir, but not for TV shows.... RE: New MythTV add-on using libcmyth - tsp42 - 2012-04-24 00:48 remove the last questionsign and it should work Code: "^(?<folder>.+?)::(?<title>.+)"that are not displayed. If you have a lot of artwork it can take a while before it is transfered. And if possible post the names of the artwork that is not displayed. Especially the middle part of the names. Usually it is named like: title_season X_coverart.jpg. The regex used to match this is: "%s.*_%s\\.(?:jpg|png|bmp) where the first %s is the title and second %s the storage group. It may need to be tuned to get the tv shows artwork. RE: New MythTV add-on using libcmyth - bilbonvidia - 2012-04-24 01:03 (2012-04-23 00:14)bilbonvidia Wrote: 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 I have rebuilt my system today from scratch, same thing happening. RE: New MythTV add-on using libcmyth - fiveisalive - 2012-04-24 02:04 (2012-04-23 17:59)tdavis Wrote: 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. Yep, I have same issue. SchedulesDirect does not include an episode in the subtitle, and many of the shows I record don't have an episode number in any case (e.g. PBS Newshour, documentaries etc.) All of the individual recordings under the series/program name have only a single letter if I use the default regex, so does your regex fix this? Update: tsp's regex fixed the episode name problem, thanks! (2012-04-23 21:29)tsp42 Wrote: Jimmer+FiveIsAlive: Do you use the storagegroup option in the MythTV backend I only use the default storage group, so no separate storagegroup if that's what you mean. --- Two steps, forward, one step backwards: now LiveTV doesn't work at all, it just hangs with "Working...". Can't exit, have to kill XBMC completely and restart. Using MythTV 0.23.1-fixes. (Mythbox add-on with same installation works fine). |