![]() |
|
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 |
- CrashX - 2012-02-09 04:24 tsp42 Wrote:From the stacktrace it looks like the EPG updater it stuck. Do you see the same spamming of the debug log with: Nope. Any solutions to this problem in the code ? - Ersan - 2012-02-11 03:11 Is it possible to compile this for ATV2? - Powderking - 2012-02-13 18:15 I'm reading this post for quite a while now and using your branch almost since I first read about it. I like it very much and wanted to say thank you very much! I'm using mythbackend on a different machine so there are some missing features as you listed in your first post. There's only one thing that's not listed and I'm missing: The ability to group the recordings as in mythfrontend. But I'm sure it's on your todo list as well because I read something in the deep of this thread. I have one question about compiling. When there's a new commit and I do a "git pull origin master" do I have to do "./bootstrap && ./configure --enable-vdpau=yes && make && make install" or can I omit something to speed up the make command? - fiveisalive - 2012-02-13 19:48 Powderking Wrote:I'm reading this post for quite a while now and using your branch almost since I first read about it. I believe that is on tsp's TODO list. Quote:I have one question about compiling. When there's a new commit and I do a "git pull origin master" do I have to do "./bootstrap && ./configure --enable-vdpau=yes && make && make install" or can I omit something to speed up the make command? For new commits normally: Code: makeis sufficient. If something is changed in automake, that requires re-running configure, it will normally tell you, in that case re-run the configure step - Powderking - 2012-02-13 22:00 Thanks alot for your reply! Is it right that running bootstrap isn't necessary anymore? - fiveisalive - 2012-02-14 00:49 Powderking Wrote:Thanks alot for your reply! AFAIK bootstrap normally needs to be done only once (upon your first checkout from github). - Powderking - 2012-02-14 15:40 Great! This will speed up updating ![]() Thanks alot! Mythtv is now forked as Torc - druhboruch - 2012-02-16 02:21 http://www.phoronix.com/scan.php?page=news_item&px=MTA1Nzg What does it mean for the future of mythtv and xbmc plugin? git install script for oneiric - sysadm1n - 2012-02-17 05:56 First of all, THANK YOU to everyone at XBMC for such an incredible project!!! I'm especially glad to see the PVR things come together. I've put together a little one-off script to install it from git that might make things easier for some. It's been tested in Ubuntu 11.10 and Mint 12. To use it, open a terminal, paste the xbmc-pvr-install.sh text below into a file, then run it as your normal user. For example: Code: nano xbmc-pvr-install.shxbmc-pvr-install.sh Code: #!/bin/bashCheers!
- Powderking - 2012-02-18 18:44 That's great! Thanks alot. I have merged your script with my attempt to update xbmc. I wasn't sure how to test if git has updated something. So probably when running not longer than one minute after the last execution it compile's again because it tests if there's a change in the code dir. Set the working dir to the directory where the source is. Now it should match with sysadm1n's script. vdpau is the default. For those who don't want it uncomment the line #optConfigParams="". Or run it with -c "" option. The "" are needed because an argument is needed with the -c option. Set usrName to the user name you run XBMC as. I run it as user xbmc. It's used to backup the user folder. I prefer a little different place and timestamp. Just change it to your needs. Code: #!/bin/bash |