![]() |
|
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 - fiveisalive - 2012-03-22 23:09 (2012-03-22 20:04)tsp42 Wrote: You need an older version of the boost library(1.47 or older) Is someone in upstream XBMC working on getting xbmc to work with newer boost? Pretty soon most distros will be going to boost 1.48 or later. (e.g. the upcoming Fedora 17 will be on boost 1.48). RE: New MythTV add-on using libcmyth - tsp42 - 2012-03-22 23:13 The compile error is located in my code so I will have to fix it. RE: New MythTV add-on using libcmyth - fiveisalive - 2012-03-23 06:23 after a git pull I just tested the latest master and there is something wrong with the EPG:Timeline view: it is completely blank (aside from a top row of timeslots). EPG:Next and EPG:Now are fine (as is the information in the TV Channels view). RE: New MythTV add-on using libcmyth - dodoadoodoo - 2012-03-24 10:44 I get white noise when try to play music with the latest version. This seems to be the offending PR, and commit here: https://github.com/xbmc/xbmc/commit/163fbda342046d1109f0769054cc32d9e65d37b0. I believe it is already fixed upstream, but while you wait you can edit xbmc/cores/paplayer/CodecFactory.cpp at line 123-ish and change: else if (strContent.Left(9).Equals("audio/l16") == 0) into: else if (strContent.Left(9).Equals("audio/l16")) /D RE: New MythTV add-on using libcmyth - deadite66 - 2012-03-24 17:38 white noise for me too. RE: New MythTV add-on using libcmyth - simonind - 2012-03-25 00:00 For those struggling with Windows XP and the lack of inet_ntop support I've built a version of libcmyth that works. I had to change connection.c and (oddly?) my sdkddkver.h in c:\program files\microsoft sdks\Windows\v7.0a\Include as it was setting the _WIN32_WINNT value incorrectly, it should be 0x0501 for XP. Anyway I've (hopefully) committed the change to tsp's tree, my first submission to the open source community woohoo! For those that can't be bothered to build it, I've uploaded it here libcmyth.dll for Windows XP Cheers Simon RE: New MythTV add-on using libcmyth - 321liftoff - 2012-03-25 19:57 (2012-03-25 00:00)simonind Wrote: For those that can't be bothered to build it, I've uploaded it here libcmyth.dll for Windows XPFantastic! the dll works on WinXP. As an aside, on the mythbackend box mysql username, I changed the host from "localhost" to "%" (any host) to have it connect. Thanks! RE: New MythTV add-on using libcmyth - stevellion - 2012-03-27 11:43 I've got white noise too. Hoping the next upstream-merge will include the fix from Eden... (Audio works with DVD player.. just not paplayer) RE: New MythTV add-on using libcmyth - fiveisalive - 2012-03-27 16:57 (2012-03-27 11:43)stevellion Wrote: I've got white noise too. Hoping the next upstream-merge will include the fix from Eden... Yep, same problem here. RE: New MythTV add-on using libcmyth - dodoadoodoo - 2012-03-28 09:06 (2012-03-27 16:57)fiveisalive Wrote:(2012-03-27 11:43)stevellion Wrote: I've got white noise too. Hoping the next upstream-merge will include the fix from Eden... Did you try my proposed fix from post 504? /D |