![]() |
|
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 - rdoac - 2012-05-23 03:19 (2012-05-22 21:02)tsp42 Wrote: rdoac: The huge log file is probably caused by the"Include more debug information in the log" being enabled. If not could you report back what is causing the log file to be so big. Ah ok, life is a lot more sensible now. Is this, by default, on? RE: New MythTV add-on using libcmyth - mastix - 2012-05-23 07:29 (2012-05-22 22:59)dodoadoodoo Wrote:(2012-05-22 18:39)mastix Wrote: Hi guys, I've tried it without "-j2" as well. I've also tried to build it without the symbolic link (directly in my home directory). No chance... it just does not compile. ![]() That's really weird... I made no changes to the source code. But I think I'll try to run a git reset or git clean and start all over again... mastix RE: New MythTV add-on using libcmyth - ollegut - 2012-05-23 10:09 (2012-05-21 23:33)KeithLM Wrote: I've decided to try this on my main XBMC machine to see if I can have any luck with it. Unfortunately I can't build because of some dependency issue. I don't have curl.h. I've run into some issue installing the following: Hi Keith, I ran into your post while lookíng for a solution to the same problem and now that I found a solution that worked for me I thought I should post here too. The problem for me is that I had installed XBMC from the team-xbmc/unstable ppa earlier but after the upgrade to 12.04 XBMC is available in the ubuntu repo and the unstable repo doesn't have a Precise version yet so I disabled the unstable repo. How I solved it was to enable the oneiric version of team-xbmc/unstable, install libcurl3-dev and then disable it again. I hope this works for you as well. RE: New MythTV add-on using libcmyth - dodoadoodoo - 2012-05-23 16:07 (2012-05-22 21:02)tsp42 Wrote: rdoac: The huge log file is probably caused by the"Include more debug information in the log" being enabled. If not could you report back what is causing the log file to be so big. I find that my logfile gets spammed with EPG update entries. While I only have about 100 channels visible, I have more than a thousand "available" (sat setup). Unfortunately the pvr code by default sets the "update epg" member (CPVRChannel::m_bEPGEnabled I believe) to true by default (rather than to match the hidden parameter), so the xbmc spends quite some time, and log space, to check epg for channels I am not able to watch. /D RE: New MythTV add-on using libcmyth - mastix - 2012-05-23 16:55 Update from my side... I reseted and cleaned my git directory and started all over again... seems to build fine now! Let's plray that it stays that way...
RE: New MythTV add-on using libcmyth - dodoadoodoo - 2012-05-23 18:03 (2012-05-23 16:07)dodoadoodoo Wrote: I find that my logfile gets spammed with EPG update entries. While I only have about 100 channels visible, I have more than a thousand "available" (sat setup). Unfortunately the pvr code by default sets the "update epg" member (CPVRChannel::m_bEPGEnabled I believe) to true by default (rather than to match the hidden parameter), so the xbmc spends quite some time, and log space, to check epg for channels I am not able to watch. So, I added a if(gExtraDebug) wrapper to some of the log statements in the addon. Improved things at my end a bit. PR at https://github.com/tsp/xbmc/pull/17 Still extensive spamming though. Dushmaniac's code still fill my log with some, in my view unnecessary, information, namely: * DEBUG: PVRTimers - UpdateEntries - updated timer 1179648 on client 1 repeats about every two minutes for all my timers (this may be due to the b/e rescheduling stuff) * ERROR: EPG - Update - failed to update table 'Classic' repeats about every five minutes for all my channels * INFO: UpdateFromScraper - channel not found, can't update same as the EPG update above I am not sure on how to proceed with the above? They are easy enough to comment out, but I guess we should find a more long term solution. /D RE: New MythTV add-on using libcmyth - cspack - 2012-05-23 18:47 (2012-05-22 21:02)tsp42 Wrote: rdoac: The huge log file is probably caused by the"Include more debug information in the log" being enabled. If not could you report back what is causing the log file to be so big. When I am watching a recording my log file is filling up with these messages, even with "Include more debug information in the log" disabled. Code: 12:37:24 T:140453702252288 DEBUG: AddOnLog: MythTV cmyth PVR Client: ReadRecordedStream - curPos: 122411648 TotalLength: -1511774636RE: New MythTV add-on using libcmyth - bilbonvidia - 2012-05-23 22:38 tsp42: Confirmed, channel changing now working for me now. RE: New MythTV add-on using libcmyth - rdoac - 2012-05-24 03:45 Hmmm, just repulled the git source, ran bootstrap and configure and make doesn't work. I have this in the Makefile Code: PVR_DIRS=\Looks like a bug? RE: New MythTV add-on using libcmyth - KeithLM - 2012-05-24 06:37 rdoac, that's a sign that something went wrong with git. I'm not certain exactly how it works in this case, since you likely weren't editing locally, but the <<< and >>> indicate one set of lines is the local and one is from the server. It's the result of a merge not happening correctly. I don't know enough about git to say for certain how to fix this. You could try another git pull and see if it fixes it. You could also try removing the file and then git pull, but git might interpret that is if you are purposefully removing the file from the project because it is no longer needed. |