![]() |
|
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 |
- grad - 2012-01-13 08:52 tsp42 Wrote:Good to hear. The changes to libavcodec fixes the audio in recordings where the aac audio stream changes from stereo to multichannel (or reverse.). The changes to atomic.h fixes a broken reference counter = memory leak. So it might be worth applying the patch again. Hm, ok. As I reported in this post, I'm having massive issues getting any PVR solution to work. It's very disappointing really, and only by a miracle my wife is still talking to me :-) Regarding the Epg7.db issue in my other post, is anything like that known? I'm aware you don't know the xbmc-xvba branch, but AFAICT it is pretty much synced with odk pvr just as yours. I just can't pinpoint why the hell the EPG sync doesn't work reliably with ANY PVR addon. Also I'm getting frequent crashes when starting a recording or live-tv. Wartching AVI movies works like a charm. - giaur - 2012-01-13 10:36 Hello, One question: is teletext supoorted using this addon? - fiveisalive - 2012-01-13 18:25 giaur Wrote:Hello, Not yet, see: https://github.com/tsp/xbmc/issues/3 but it's on tsp42's todo list. - mlilja - 2012-01-14 18:38 Things doesn't work on Danish DVB-T if the content is h264, which everything is as of 11.1.2012. It fails with an assert() at: Code: DEBUG: ffmpeg[9F393B70]: Assertion sbr->kx[1] <= table[0] failed at libavcodec/aacsbr.c:1456I saw that mythtv has disabled this assert and if I do the same things work again with regards to livetv. One can always discuss who is to blame for this error and who should fix it, but here is a workaround for all. Code: git diff- Taadow - 2012-01-14 21:12 after upgrading (fresh install) the server running mythbackend to 11.04 and installing mythbackend 0.24.1 from PPA live tv is now working properly through XBMC although I also completely cleared out the /home/[user]/.xbmc directory as well so there wouldn't be any previous config in there messing with anything. so unfortunately I'm not really sure whether it was the upgrade to 11.04, the clean install or the clearing of settings from the .xbmc folder that eventually worked, but at least it works now! thanks for the work on this add on! - piipes - 2012-01-15 09:21 One fast question, does this support unicast devices? I have windows and dvbviewer recording service in my server pc. I think vdr support unicast devices with that plugin? http://www.saunalahti.fi/rahrenbe/vdr/iptv/ - staffan80 - 2012-01-15 15:31 Hello, I have it been following this for a while :=). Realy awsome work! I tried it breafly on a laptop a couple a weeks ago but decided to try it out on my main frontend yesterday. It seems to be working quite good, Recordings always starts playing but LiveTV seems to be a hit or miss :=) One thing a have noticed is that the image quality does not seem to meet up with mythfrontend? I am using the VDPAU advanced 2x de-interlacer in mythfrontend. I have tried many combinations in XBMC but cant find a setting that is outputting equal quality. Unable to get smooth motion. Does Xbmc support VDPAU de-interlacers? Kind regards Staffan - tsp42 - 2012-01-15 18:27 giaur Wrote:Hello,Yes. Closed captions is however not supported yet (at least not encoded in an ATSC stream). mlilja: Tak. I've added the fix to the repository. piipes: Yes I believe so. MythTV at least have some support for IPTV but better check the mythtv documentation/homepage staffan80: Yes xbmc does support VDPAU but I'm not sure how well the deinterlacers are supported (I use a sandy bridge processor in my HTPC), - cfetzer - 2012-01-15 18:40 Just tried to update, but it doesn't compile any more: Code: CPP xbmc/pvrclients/mythtv-cmyth/client.o- fiveisalive - 2012-01-15 19:21 cfetzer Wrote:Just tried to update, but it doesn't compile any more: Yep, same issue here. It compiles if you remove ‘MythConnection::’ from that line in the .h file. It's a class member function from the current class already. |