Tuesday, August 17th, 2010, 00:00 UTC | ||
[00:00:33] | hadees (hadees!~hadees@rrcs-67-79-223-139.sw.biz.rr.com) has joined #mythtv-users | |
[00:01:45] | ** mattwj2002 installs the trunk version or at least tries to ** | |
[00:05:46] | abqjp (abqjp!~abqjp@71-38-212-206.albq.qwest.net) has quit (Quit: abqjp) | |
[00:05:51] | k-man: | what would one have to do to convince the powers that be to add a "language" field to the program table? |
[00:06:27] | k-man: | it might have to be a 1-n relationship actually |
[00:06:55] | k-man: | but a simple string field that could contain a string like "English, Arabic, French" would probably suffice |
[00:07:05] | k-man: | you could then search for programs in a given language |
[00:07:07] | iamlindoro: | You'd have to provide a patch and a compelling reason for it to be applied |
[00:07:15] | wagnerrp: | so you really just want another markup type to be added |
[00:07:25] | k-man: | iamlindoro: how does one provide a patch to the db? |
[00:07:39] | iamlindoro: | by patching the dbcheck.cpp file, which performs DB upgrades |
[00:07:46] | k-man: | wagnerrp: yes, xmltv supports a loanguage field, but currently it is thrown away |
[00:07:48] | wagnerrp: | k-man: no database patch necessary |
[00:07:57] | iamlindoro: | But you'd also need to update every query and insert that touches said table |
[00:08:10] | wagnerrp: | add a new language markup type |
[00:08:25] | k-man: | wagnerrp: where can i read up on that? |
[00:08:38] | wagnerrp: | and add a new ENUM to set in the `data` field, mapping to each possible language |
[00:08:56] | wagnerrp: | then add code to mythfilldatabase to populate that data |
[00:09:11] | wagnerrp: | it will be non-invasive, and wont break anything |
[00:09:11] | k-man: | wagnerrp: the problem is, afaict, in xmltv, it is just a string, like "french, english, italian" |
[00:09:31] | wagnerrp: | youre going to have to parse that out at some point anyway |
[00:09:31] | k-man: | so either it would have to store a string like that, or it would have to be a 1-n relationship |
[00:09:35] | iamlindoro: | wagnerrp, Wait, you're not suggesting it be inserted in recordedmarkup, are you? |
[00:09:36] | wagnerrp: | may as well do so when importing the information |
[00:10:04] | wagnerrp: | erm... right |
[00:10:05] | k-man: | wagnerrp: why not just leave it as a string? |
[00:10:09] | wagnerrp: | this would have to be for guide data |
[00:10:11] | wagnerrp: | not recordings |
[00:10:17] | wagnerrp: | yeah... recordedmarkup wont do it |
[00:10:20] | wagnerrp: | nevermind that |
[00:10:36] | k-man: | searches for programs could be as .... where language like "%french%" |
[00:10:56] | k-man: | i was thinking it should be stored in the program table? |
[00:11:20] | k-man: | i supposed it would be useful to save that info with the recording also |
[00:11:38] | k-man: | but my main objective is so i can do searched for programs in a particular language |
[00:11:42] | wagnerrp: | well that information would get passed through to the recordedprogram table |
[00:11:52] | wagnerrp: | so you would need to patch that table as well |
[00:11:56] | k-man: | ok |
[00:13:19] | wagnerrp: | i /really/ dislike dealing with 1-to-n data mapping in mysql |
[00:13:42] | k-man: | wagnerrp: i don't really see a need to map it like that |
[00:13:49] | k-man: | wagnerrp: why not keep it just as a string? |
[00:14:04] | wagnerrp: | you either end up with a varchar with multiple values like you are suggesting, which is screwy to deal with |
[00:14:21] | wagnerrp: | or you end up with a cross referenced table like i was suggestion, which is equally screwy to deal with |
[00:14:31] | k-man: | yes |
[00:14:43] | mattwj2002: | multithread compiling |
[00:14:44] | mattwj2002: | nice |
[00:14:44] | mattwj2002: | :D |
[00:14:56] | wagnerrp: | multi... thread? |
[00:15:06] | wagnerrp: | never heard of such a thing |
[00:15:22] | mattwj2002: | wait |
[00:15:30] | mattwj2002: | maybe that isn't the right term |
[00:15:38] | mattwj2002: | the -j option on make |
[00:15:40] | wagnerrp: | multi-process maybe? |
[00:15:50] | mattwj2002: | oh yeah that must be it :) |
[00:15:56] | wagnerrp: | make forks off a bunch of independent 'cc' processes |
[00:16:13] | mattwj2002: | oh my quad core I set it to 6 |
[00:16:13] | wagnerrp: | its not one 'cc' process running multiple threads simultaneously |
[00:16:24] | mattwj2002: | how was that? |
[00:16:33] | wagnerrp: | ? |
[00:16:51] | mattwj2002: | I did a make -j 6 |
[00:16:54] | mattwj2002: | good idea? |
[00:17:00] | wagnerrp: | certainly |
[00:17:24] | wagnerrp: | if you find your cores idling on disk io, you may want to increase that further... |
[00:17:29] | wagnerrp: | ... if youve got the memory for it |
[00:17:43] | mattwj2002: | 8 physical GB |
[00:17:50] | wagnerrp: | -j2 would hit swap on my 1GB boxes |
[00:17:53] | k-man: | how do you tell if your cores are idling on diskio? |
[00:17:57] | wagnerrp: | and -j3 is my limit for my 2GB boxes |
[00:18:01] | mattwj2002: | 24 GB of swap |
[00:18:02] | sybolt (sybolt!~sybolt@sybolt.xs4all.nl) has quit (Ping timeout: 264 seconds) | |
[00:18:16] | wagnerrp: | k-man: CPU load is << 100% |
[00:18:48] | wagnerrp: | mattwj2002: if you hit swap, you need more memory, or youre running too much |
[00:19:02] | mattwj2002: | indeed :) |
[00:20:02] | ** mattwj2002 is eating patio grown tomatoes ** | |
[00:20:04] | mattwj2002: | yum! |
[00:20:05] | mattwj2002: | :d |
[00:20:14] | wagnerrp: | i mean youre talking a quarter second to read that memory, and 5+min to read that swap |
[00:20:18] | k-man: | what is all that html at the beginning of dbcheck.cpp |
[00:20:21] | k-man: | ? |
[00:21:30] | wagnerrp: | a big ol' comment |
[00:21:58] | wagnerrp: | probably something for DOxygen's benefit |
[00:22:01] | k-man: | wagnerrp: oh yeah :) |
[00:22:15] | k-man: | is DOxygen a person or something else? |
[00:22:39] | k-man: | oh, documentation system |
[00:22:44] | wagnerrp: | http://www.stack.nl/~dimitri/doxygen |
[00:23:30] | mattwj2002: | so guys |
[00:23:34] | k-man: | ok, supposing i want to implement this language stuff |
[00:23:35] | mattwj2002: | what is the compile time? |
[00:23:41] | k-man: | where would I start? |
[00:23:48] | wagnerrp: | what CPU? |
[00:24:10] | mattwj2002: | Phenom (original) Quad Core |
[00:24:12] | k-man: | do i need a development machine seperate from my live system? |
[00:24:17] | wagnerrp: | speed? |
[00:24:30] | mattwj2002: | something like 2.6 – 2.8 Ghz |
[00:24:32] | mattwj2002: | I forget |
[00:24:48] | wagnerrp: | mmm... 8–10 minutes? |
[00:24:51] | clusterboy (clusterboy!~clusterbo@unaffiliated/clusterboy) has quit (Read error: Operation timed out) | |
[00:24:51] | mattwj2002: | one second I'll check |
[00:24:53] | mattwj2002: | really? |
[00:24:55] | mattwj2002: | O_o |
[00:25:25] | mattwj2002: | oh crap |
[00:25:27] | mattwj2002: | way off |
[00:25:30] | mattwj2002: | 2.3 GHz |
[00:25:31] | mattwj2002: | :( |
[00:25:43] | mattwj2002: | 15 minutes? |
[00:25:54] | wagnerrp: | my 2.6Ghz X2 running '-j3' does it well under 20min |
[00:26:11] | mattwj2002: | nice |
[00:26:23] | wagnerrp: | my 1.8GHz X2 does it in maybe 30 |
[00:26:34] | mattwj2002: | so after I compile mythtv |
[00:27:03] | mattwj2002: | I have to do the plugins and what not seperate? |
[00:27:17] | wagnerrp: | you need to compile AND install mythtv |
[00:27:21] | wagnerrp: | then you can compile the plugins |
[00:27:44] | mattwj2002: | okay |
[00:27:48] | mattwj2002: | oh crap |
[00:27:58] | mattwj2002: | I don't see mythexport |
[00:27:59] | mattwj2002: | :( |
[00:28:18] | mattwj2002: | oh I think that is unoffical |
[00:28:24] | wagnerrp: | yes, mythbuntu |
[00:29:54] | mattwj2002: | crap! |
[00:30:00] | mattwj2002: | it doesn't work with the trunk |
[00:30:01] | mattwj2002: | :( |
[00:30:53] | wagnerrp: | 'the trunk'... i like that |
[00:30:54] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[00:33:09] | Anduin (Anduin!~awithers@pdpc/supporter/professional/anduin) has joined #mythtv-users | |
[00:33:09] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v Anduin | |
[00:33:22] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[00:34:04] | aloril (aloril!~aloril@84.249.126.153) has quit (Ping timeout: 276 seconds) | |
[00:35:18] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Quit: Leaving.) | |
[00:41:46] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[00:44:56] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Read error: Connection reset by peer) | |
[00:45:02] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[00:45:43] | k-man: | i heard rumour that there is a git repo of mythtv |
[00:46:03] | wagnerrp: | has been for years |
[00:46:20] | k-man: | how do i access it? |
[00:46:21] | wagnerrp: | unofficial, maintained by one of the devs |
[00:46:33] | aloril (aloril!~aloril@dsl-tkubrasgw3-fe7ef900-153.dhcp.inet.fi) has joined #mythtv-users | |
[00:47:13] | k-man: | is this it? http://git.jannau.net/git/mythtv.complete/ |
[00:47:26] | wagnerrp: | looks like it |
[00:47:29] | k-man: | thanks |
[00:50:03] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[00:57:58] | mattwj2002: | well |
[00:58:03] | mattwj2002: | I got to mythtv-setup |
[00:58:07] | mattwj2002: | so far so good :) |
[00:58:16] | mattwj2002: | no smoke from the computer..yet |
[00:58:18] | mattwj2002: | :P |
[01:19:53] | clusterboy (clusterboy!~clusterbo@unaffiliated/clusterboy) has joined #mythtv-users | |
[01:20:08] | hadees (hadees!~hadees@rrcs-67-79-223-139.sw.biz.rr.com) has quit (Quit: hadees) | |
[01:23:02] | inordkuo (inordkuo!~inorkuo@adsl-35-19-144.int.bellsouth.net) has joined #mythtv-users | |
[01:29:48] | kevink (kevink!~chatzilla@c-67-188-35-72.hsd1.ca.comcast.net) has quit (Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100723085541]) | |
[01:36:15] | mattwj2002: | I got peppers!!!!! |
[01:36:15] | mattwj2002: | :D |
[01:37:56] | andreax (andreax!~andreaz@p57B91FE5.dip.t-dialin.net) has joined #mythtv-users | |
[01:38:57] | hadees (hadees!~hadees@72-48-211-19.dyn.grandenetworks.net) has joined #mythtv-users | |
[01:39:02] | andreax1 (andreax1!~andreaz@p57B920C5.dip.t-dialin.net) has quit (Ping timeout: 264 seconds) | |
[01:43:24] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[01:46:01] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[01:46:18] | MilkBoy (MilkBoy!~milkboy@2a00:16a0::a800:c1ff:fe40:f4b2) has quit (Ping timeout: 248 seconds) | |
[01:50:26] | Elv13 (Elv13!~lepagee@modemcable227.96-200-24.mc.videotron.ca) has quit (Read error: Connection reset by peer) | |
[01:51:43] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[02:04:46] | steadyeddie (steadyeddie!~michael@c-98-209-86-159.hsd1.mi.comcast.net) has joined #mythtv-users | |
[02:09:53] | Bradison (Bradison!~brad@24-196-151-162.dhcp.mdsn.wi.charter.com) has joined #mythtv-users | |
[02:11:02] | Bradison: | Anyone have any experience with HDHomeRun and MythTV? |
[02:11:31] | mattwj2002: | I do I do! |
[02:11:57] | [R]: | hdhomerun? what's that? i don't think anyones ever used it... |
[02:12:07] | mattwj2002: | haha [R] |
[02:12:08] | Bradison: | lol. Ok, here is my tale of woe. |
[02:12:29] | Bradison: | I just setup a clean Mythbuntu install with auto updates on. |
[02:13:04] | Bradison: | The HR is found using the silicondust utility. Everything is fine so far. |
[02:13:21] | PMantis: | Bradison, HDHomerun's work perfectly with MythTV |
[02:13:43] | Bradison: | It's really not working for me. |
[02:13:57] | mattwj2002: | what is it doing or not doing? |
[02:14:04] | Bradison: | I have a friend with a different rig and he is having the same problems. |
[02:14:12] | PMantis: | Describe |
[02:14:27] | mattwj2002: | details please! :D |
[02:15:00] | Bradison: | When I attempt to tune the HD tuner using my frontend, it frequently errors out. Black screen or crashes to the desktop. |
[02:15:42] | Bradison: | I have a frrontend also loaded on the backend server, and it shows the same behaviour. |
[02:17:39] | Bradison: | FE error log does not have any obvious error before the crashes. |
[02:18:26] | PMantis: | Bradison, Have you tried scheduling a recording. |
[02:18:48] | Bradison: | Basically, it is unusable for me. I don't know if the channel scan is being performed incorrectly or if there is some other issue. |
[02:19:02] | dgillies (dgillies!~dgillies@wavejumper.outer-rim.org) has joined #mythtv-users | |
[02:19:04] | Bradison: | No. I guess I could try to schedule something. |
[02:19:10] | dgillies (dgillies!~dgillies@wavejumper.outer-rim.org) has left #mythtv-users () | |
[02:19:17] | mattwj2002: | okay guys |
[02:19:19] | mattwj2002: | help me out |
[02:19:45] | mattwj2002: | I build the mythplugins |
[02:19:49] | mattwj2002: | I installed them |
[02:19:55] | mattwj2002: | mythweb doesn't work |
[02:19:59] | mattwj2002: | what did I miss? |
[02:20:17] | [R]: | yhou need to read the insturctions |
[02:20:40] | Beirdo: | I wanna know why the frontend idles at 45% CPU or so sitting in the recorded program listing |
[02:20:42] | mattwj2002: | your right |
[02:20:43] | mattwj2002: | sorry |
[02:21:04] | Beirdo: | it uses less CPU to playback. |
[02:21:09] | [R]: | Beirdo: trunk? |
[02:21:21] | Beirdo: | of course |
[02:21:26] | [R]: | i know there used to be a bug |
[02:21:29] | [R]: | but i thought htey fixed it |
[02:21:45] | Bradison: | I sometimes get "Error opening jump program file." when it tries to tune the station. |
[02:23:49] | Bradison: | My analog tuners are working perfectly. |
[02:24:28] | Bradison: | They have been for over a year, but this new HomeRun box doesn't seem to work. |
[02:28:33] | rossand (rossand!~aross@CPE485b390978ce-CM00222ddf42dd.cpe.net.cable.rogers.com) has quit (Quit: Leaving.) | |
[02:28:50] | k-man: | Bradison: have you made sure the hdhomerun has the latest firmware? (no idea if thats the cause though) |
[02:29:18] | Bradison: | Yes, it's fully up to date. |
[02:30:36] | QED__ is now known as christ` | |
[02:31:07] | k-man: | Bradison: i use an hdhr and i don't have that problem |
[02:31:16] | k-man: | Bradison: sorry i can't be much more help than that |
[02:32:32] | Bradison: | k-man, can you answer a few questions about your setup? |
[02:35:45] | k-man: | Bradison: i can try – but before that I should state I am in Australia with the DVB-T version of the hdhr |
[02:36:02] | Beirdo: | oh no, an Aussie! :) |
[02:36:04] | Beirdo: | heh |
[02:36:14] | k-man: | Bradison: i prefer to answer in channel |
[02:36:23] | Beirdo: | how's the winter down there? |
[02:36:29] | k-man: | cold |
[02:36:48] | Bradison: | Are you compiling from source or using a packaged distro? |
[02:36:56] | k-man: | source |
[02:37:01] | k-man: | trunk |
[02:37:03] | Bradison: | What os? |
[02:37:47] | k-man: | linux, debian distro |
[02:38:49] | k-man: | i'm running trunk, but it was compiled a couple of months ago |
[02:39:48] | Bradison: | I don't know if this makes sense....but did you configure your HR with an earlier release and upgrade or do a clean install with ,23? |
[02:40:15] | iamlindoro is now known as iamlindoro__ | |
[02:40:40] | k-man: | hmm.. clean install with .23, at that time, installed from the debian multimedia packages, then removed the packages and switched to builds from trunk |
[02:41:39] | Bradison: | After the channel scan, did you have to delete many channels that were added incorrectly or did the scan bring in all the correct channels? |
[02:42:54] | iamlindoro__ is now known as iamlindoro | |
[02:44:08] | k-man: | Bradison: i think it was mainly correct, but i find i always have to delete some channels as we have a few here in Aus. that I'm not intereseted in. Also, iirc it picked up some channels from another more distant transmitter that also were not appropriate for me |
[02:44:55] | Bradison: | Are you using an OTA antenna or cable? |
[02:45:01] | k-man: | OTA |
[02:45:19] | k-man: | Bradison: where are you located? |
[02:45:25] | Bradison: | US. |
[02:45:37] | Bradison: | It's hot here. |
[02:45:51] | [R]: | how hot is it? |
[02:45:57] | Bradison: | lol |
[02:47:07] | Bradison: | Hey, thanks for your help. I might try another distro or compile from source. |
[02:47:26] | pizzledizzle (pizzledizzle!~pizdets@pool-96-250-215-244.nycmny.fios.verizon.net) has quit () | |
[02:47:26] | [R]: | myth "just works" in mythbuntu |
[02:47:28] | k-man: | Bradison: compiling from source was less painful than i imagined |
[02:48:01] | Bradison: | I've heard lots of horror stories, but have not tried it. |
[02:48:40] | Bradison: | myth "just works" for my analog tuners with mythbuntu, but HR is a no go. |
[02:49:23] | k-man: | my only problem was that cron was set to run mythfilldatabase from /usr/bin but after installing from source, mythfilldatabase was in /usr/local/bin so it stopped receiving guide data and I didn't notice until too late |
[02:49:39] | [R]: | myth runs fill on its own... |
[02:51:26] | Bradison: | Thanks again for your help. Cheers. |
[02:51:31] | Bradison (Bradison!~brad@24-196-151-162.dhcp.mdsn.wi.charter.com) has left #mythtv-users () | |
[02:54:58] | k-man: | [R]: unless you specify it to run from cron, which i did for historical reasons |
[02:56:18] | [R]: | lol |
[02:56:42] | high-rez: | Shouldn't it be that if one of my backends is tuned to a program, that if another backend wishes to watch the same program I should only use one of my receivers (both of which have multirec enabled) ? |
[02:58:44] | wagnerrp: | Beirdo: 8788 seems wholly worthless IMHO |
[02:58:47] | inordkuo (inordkuo!~inorkuo@adsl-35-19-144.int.bellsouth.net) has quit (Quit: Leaving.) | |
[02:59:36] | high-rez: | wagnerrp: Any chance you know the answer to that question? I'm asking to know if I should open a bug up. :) |
[02:59:54] | high-rez: | (This is the first time I've *really* gotten a proper master/slave backend config working) |
[03:00:03] | wagnerrp: | mythtv will always use the first available tuner |
[03:00:23] | wagnerrp: | if that tuner happens to be a virtual tuner already tuned to the proper multiplex, so be it |
[03:00:30] | Beirdo: | wagnerrp: agreed, but I'll let it sit for a moment before closing it :) |
[03:00:49] | wagnerrp: | Beirdo: no, i mean nuvexport is supposed to be run as a user job |
[03:00:52] | Beirdo: | especially as % is based on WITH the commercials still in :) |
[03:00:54] | Beirdo: | no |
[03:01:04] | wagnerrp: | if its not updating the entry in the database, why bother? |
[03:01:09] | Beirdo: | nuvexport is supposed to run from a shell |
[03:01:11] | high-rez: | If I have a tuner on my slave, and a tuner on my master, and they both have the same video source, if I tune to both program on the salve nad master (they're also both frontends) it should only use /one/ tuner right ? |
[03:01:21] | wagnerrp: | oh? manual operation only? |
[03:01:23] | wagnerrp: | funky |
[03:01:23] | Beirdo: | it CAN be coerced into running as a user job |
[03:01:40] | Beirdo: | but it was designed originally with menus,e tc |
[03:01:41] | high-rez: | jesus i can't type |
[03:01:48] | wagnerrp: | high-rez: you dont tell tuners what to do |
[03:01:55] | wagnerrp: | you tell mythtv you want to watch/record some channel |
[03:02:01] | wagnerrp: | and it decides what tuner it wants to do so on |
[03:02:26] | high-rez: | But it should only use one tuner if I'm watching livetv on two machines on the exact same channel? |
[03:02:38] | high-rez: | Or is that not correct? this is where i'm confused. |
[03:02:46] | wagnerrp: | mythtv will use the next tuner in the list |
[03:02:55] | high-rez: | I see. So this is by design. |
[03:02:56] | high-rez: | Ok |
[03:03:04] | wagnerrp: | each virtual tuner is defined as one of those tuners in the list |
[03:03:07] | Beirdo: | but still we have % complete, an ETA isn't THAT useful really |
[03:03:19] | high-rez: | a virtual tuner is where you have multirec enabled ? |
[03:03:19] | Beirdo: | but not all that useless either :) |
[03:03:22] | wagnerrp: | correct |
[03:03:29] | high-rez: | Hmm. |
[03:03:41] | wagnerrp: | so if your next tuner is a virtual tuner on the same card already tuned to that multiplex, mythtv will use it |
[03:03:45] | Beirdo: | ewwww, what kinda crappy diff is this? |
[03:04:05] | wagnerrp: | if your next tuner is on a different physical tuner, it will tie up a second physical tuner on that same multiplex |
[03:04:25] | high-rez: | wagnerrp: Shouldn't it be that it checks to see if another tuner is already tuned to the multiplex you want, and use a virtual off of that tuner ? |
[03:04:59] | wagnerrp: | high-rez: to be honest, if youre going livetv, you want a new physical tuner for each session |
[03:05:30] | wagnerrp: | if two sessions are using the same physical tuner, neither of them can tune off that multiplex without switching to a new tuner |
[03:06:20] | wagnerrp: | with recordings, placement could be done more intelligently, but it works pretty well as it is |
[03:06:26] | high-rez: | Right. But I figured the whole tuner selection piece was abstracted from the frontend so it would never know – and the backend did all of the magic behind the schenes :) |
[03:06:57] | wagnerrp: | livetv and multirec can get a bit hairy |
[03:07:06] | high-rez: | Yeah, its ok as is – I was just surprised about it. :D |
[03:07:09] | wagnerrp: | its a source of much consternation among some of the more vocal users |
[03:07:19] | wagnerrp: | and its largely ignored by the devs who dont use livetv anyway |
[03:07:29] | high-rez: | Better consternation than constipation. |
[03:07:42] | mattwj2002 (mattwj2002!~Matt@wikisource/pdpc.active.mattwj2002) has left #mythtv-users () | |
[03:10:27] | high-rez: | Does myth schedule recordings so that it can get as much done with multirec as possible? E.g. I assume if I had two programs on the same multuplex myth would then only use the tuner on my master backend, and the slave would be free for livetv viewing? |
[03:10:29] | wagnerrp: | http://gizmodo.com/5614375 |
[03:10:58] | wagnerrp: | high-rez: again, mythtv simply uses the first available tuner |
[03:11:17] | wagnerrp: | so if you defined your virtual tuners such that they are all ordered sequentially |
[03:11:33] | wagnerrp: | meaning you set the final number when you first created the card, before creating any new cards |
[03:11:46] | wagnerrp: | mythtv will first try through all the virtual tuners on the first card |
[03:11:56] | high-rez: | Hmm. I see. |
[03:12:00] | wagnerrp: | if the show is on the same multiplex, it will be possible to record on that card, and mythtv will place it there |
[03:12:27] | wagnerrp: | if the show is on another multipled, it will not be able to record on any of those virtual tuners, and will fall through to the next physical tuner |
[03:12:44] | wagnerrp: | s/multipled/multiplex/ |
[03:13:37] | high-rez: | I think it would be neat to maybe automate some of that logic so the backends all know which BE is tuned to what multiplex, and if someone wants something on a multiple that's already tuned and a virtual is available to use that (i know there's aan argument as to wether or not that is correct behavior – obviously when the user changes channels there'd have to be a check to move them to another tuner if its available and channel is on a diff multiplex |
[03:14:33] | high-rez: | Moreover, say both tuners are busy recording something, and the user is watching livetv, it would be interesting to let the user surf through the channels that are available on both multiplexes and just switch between them automagically. |
[03:14:56] | wagnerrp: | could it be done better? sure |
[03:15:10] | wagnerrp: | but it seems to work well enough now for most cases |
[03:15:11] | Twiggy2cents (Twiggy2cents!~darren@70-41-33-247.cust.wildblue.net) has joined #mythtv-users | |
[03:15:26] | wagnerrp: | and with more complexity and logic comes more overhead |
[03:15:46] | wagnerrp: | the scheduler is already slow enough with large lineups and multiple tuners |
[03:15:54] | [R]: | that's what she said? |
[03:16:23] | high-rez: | E.g. Channel 1,2,3,4 are on multiplex 1 and channel 5,6,7,8 are on mutiplex 2 and 9,10,11,12 on are multiplex 3. Tuner 1 is recording channel 1 and tuner 2 is recording channel 5. Each tuner has a multirec value of two. The user would then be able to surf 1,2,3,4,5,6,7,8 but not 9,10,11,12 |
[03:17:03] | high-rez: | Wow, I'm talking jarjar today – hope that makes sense even a little bit. :) |
[03:19:53] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Ping timeout: 255 seconds) | |
[03:20:41] | Beirdo: | this is insane |
[03:20:53] | [R]: | Beirdo: insane in the brain? |
[03:20:55] | high-rez: | It *IS*insane |
[03:20:57] | high-rez: | What's insane? |
[03:20:58] | Beirdo: | 22% during playback... 45–48% sitting in a lousy menu? |
[03:21:05] | [R]: | Beirdo: opengl? |
[03:21:11] | [R]: | Beirdo: qt? nvdpau? |
[03:21:11] | Beirdo: | yeah |
[03:21:15] | [R]: | vdpau* |
[03:21:36] | Beirdo: | but nothing's changing on the screen but a "Recording" fading in and out |
[03:21:52] | [R]: | i remember that one bug |
[03:21:56] | [R]: | had to do with an idle loop or something |
[03:22:03] | [R]: | and qt being stupid |
[03:22:06] | [R]: | are you on the latest and greated qt? |
[03:22:23] | Beirdo: | doubtful |
[03:22:25] | [R]: | greatest* |
[03:26:55] | steadyeddie (steadyeddie!~michael@c-98-209-86-159.hsd1.mi.comcast.net) has left #mythtv-users ("Ex-Chat") | |
[03:30:57] | Twiggy2cents (Twiggy2cents!~darren@70-41-33-247.cust.wildblue.net) has quit (Read error: Connection reset by peer) | |
[03:33:37] | inordkuo (inordkuo!~inorkuo@adsl-35-19-144.int.bellsouth.net) has joined #mythtv-users | |
[03:37:09] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[03:40:58] | inordkuo (inordkuo!~inorkuo@adsl-35-19-144.int.bellsouth.net) has quit (Ping timeout: 248 seconds) | |
[03:42:56] | dashcloud (dashcloud!~quassel@pool-173-59-40-212.phlapa.fios.verizon.net) has quit (Ping timeout: 265 seconds) | |
[03:56:33] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 258 seconds) | |
[03:56:51] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[03:57:21] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[04:06:25] | olejl_ (olejl_!~olejl@95.175.84.229) has quit (Read error: Connection reset by peer) | |
[04:07:02] | olejl_ (olejl_!~olejl@95.175.84.229) has joined #mythtv-users | |
[04:08:28] | joat (joat!~joat@ip70-174-79-200.hr.hr.cox.net) has quit (Ping timeout: 240 seconds) | |
[04:09:03] | jstenback (jstenback!~jstenback@64.151.104.172) has quit (Ping timeout: 240 seconds) | |
[04:09:12] | jstenback (jstenback!~jstenback@64.151.104.172) has joined #mythtv-users | |
[04:13:16] | bcgrown (bcgrown!~dave@216-19-189-175.dyn.novuscom.net) has joined #mythtv-users | |
[04:14:52] | bcgrown: | why does playing a DVD give me super choppy audio and a ridiculous number of these messages: 2010-08–16 21:14:16.798 WriteAudio: buffer underrun |
[04:15:04] | bcgrown: | i dont get this happening anywhere else... |
[04:16:17] | bcgrown: | that was on the DVD menu. when I play the DVD i get less of those messages but it plays at turbo speed. (time stretch is set to 1.0x) |
[04:18:12] | bcgrown: | it's like watching the chipmunks on crack |
[04:19:43] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[04:22:26] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 255 seconds) | |
[04:23:44] | joat (joat!~joat@ip70-174-79-200.hr.hr.cox.net) has joined #mythtv-users | |
[04:24:55] | GadgetWisdomGuru (GadgetWisdomGuru!~dshansk1@66.114.64.53) has quit (Read error: Connection reset by peer) | |
[04:25:27] | GadgetWisdomGuru (GadgetWisdomGuru!~dshansk1@66.114.64.53) has joined #mythtv-users | |
[04:30:42] | Beirdo: | ugh, no ambition tonight |
[04:30:49] | [R]: | Beirdo: F- |
[04:30:49] | olejl_ (olejl_!~olejl@95.175.84.229) has quit (Read error: Connection reset by peer) | |
[04:31:03] | ** Beirdo f-arts ** | |
[04:31:10] | [R]: | lol |
[04:31:13] | Beirdo: | that's better |
[04:31:21] | [R]: | relieved the pressure? |
[04:31:36] | Beirdo: | nah, just expressed my summary of the day |
[04:31:50] | [R]: | lol |
[04:33:02] | Beirdo: | maybe I should rip old crap outta nuvexport |
[04:33:17] | Beirdo: | that's almost destructive enough to hold my attention for a moment |
[04:33:29] | [R]: | what was with that guy who was talkin crap about nuvexport on the ml |
[04:34:14] | Beirdo: | who? Mr. I-Do-Everything-In-Bash-Because-I-Can't-Learn-Perl |
[04:34:24] | [R]: | haha |
[04:34:26] | olejl_ (olejl_!~olejl@95.175.84.229) has joined #mythtv-users | |
[04:36:30] | Beirdo: | OK... transcode go bye-bye |
[04:36:35] | Beirdo: | screw transcode |
[04:36:52] | [R]: | how would that work? |
[04:37:06] | Beirdo: | gonna have to reimplement DVD export in mencoder, I think |
[04:37:15] | [R]: | no... i mean screwing transcode |
[04:37:33] | [R]: | :) |
[04:37:34] | Beirdo: | I'll leave the details to the horny. |
[04:37:39] | [R]: | HAHA |
[04:37:48] | Beirdo: | where there's a willy, there's a way |
[04:38:06] | [R]: | lol |
[04:51:31] | bcgrown: | anyone know a good DVD ripping app? myth won't work with this disc :( |
[04:51:33] | Beirdo: | OK. Transcode is history |
[04:51:37] | bcgrown: | (for linux that is) |
[04:51:47] | Beirdo: | bcgrown: gooogle |
[04:52:39] | bcgrown: | le sigh |
[04:52:54] | [R]: | lol |
[04:56:19] | mzb: | I have a grabber that returns language for the programme ... does the db have an entry for this somewhere? |
[04:56:22] | Beirdo: | OK, VCD, SVCD, DVCD... all nuked |
[04:56:27] | mzb: | (multicultural channel) |
[04:56:34] | Beirdo: | mzb: no |
[04:56:41] | mzb: | ok, shame |
[04:56:42] | Beirdo: | someone already asked earlier :) |
[04:56:47] | mzb: | :) |
[04:56:59] | Beirdo: | and who knows, maybe they will patch something to use the metadata for that |
[04:57:04] | mzb: | probably another .au ;) (mentioned on the mailing list earlier) |
[04:57:20] | mzb: | would be nice for my 'movie' power search |
[04:57:21] | wagnerrp: | no, israeli |
[04:57:22] | Beirdo: | crazy aussies :) |
[04:57:56] | Beirdo: | not that there's anything wrong with that of course :) |
[04:57:56] | mzb: | ie: <rest of query> AND language LIKE "%English%" |
[04:58:39] | wagnerrp: | stupid antec, not selling spare parts for 8yr old cases |
[04:59:50] | Beirdo: | oh stupid TravelHD |
[05:00:07] | Beirdo: | they have subtitles for Anthony Bourdain in Rome |
[05:00:15] | Beirdo: | and they put a splash ad right over it |
[05:00:22] | Beirdo: | dumb putzes |
[05:01:31] | Beirdo: | lots of f**** in the subtitles... seems Italians get verbose and sweary when they fight :) |
[05:03:22] | Beirdo: | q |
[05:03:22] | Beirdo: | hehe, wrong window |
[05:03:43] | ** Beirdo yawns ** | |
[05:09:42] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[05:16:50] | wagnerrp: | sphery: ive got a number of case fans going bad, so im looking for replacements on newegg |
[05:17:05] | wagnerrp: | found one where some guy is pushing one fan because it uses very little power |
[05:17:28] | wagnerrp: | and thats great for his atom, because that tenth watt less this fan pulls than the rest makes all the difference |
[05:17:40] | __benny__ (__benny__!~benny@h87-241-87-70.dynamic.se.alltele.net) has quit (Ping timeout: 265 seconds) | |
[05:21:12] | bcgrown: | every tenth watt counts :) |
[05:24:13] | wagnerrp: | every tenth watt is sacred |
[05:24:18] | wagnerrp: | every tenth watt is great |
[05:24:34] | wagnerrp: | ugh... need to replace the CPU cooler too |
[05:25:00] | dmz (dmz!~dmz@64.203.207.101.dyn-cm-pool-54.hargray.net) has quit (Read error: Operation timed out) | |
[05:28:37] | hadees (hadees!~hadees@72-48-211-19.dyn.grandenetworks.net) has quit (Quit: hadees) | |
[05:29:14] | Beirdo: | ooooh |
[05:29:17] | Beirdo: | I found a bug |
[05:29:58] | Beirdo: | nuvexport with mencoder belches if you say not to use the cutlist, it seems |
[05:30:23] | Beirdo: | something to fix, I guess |
[05:31:30] | Beirdo: | oh wonderful |
[05:31:35] | Beirdo: | mencoder fail |
[05:32:00] | Beirdo: | Audio format 0x4134504d is incompatible with '-oac copy', please try '-oac pcm' instead or use '-fafmttag' to override it. |
[05:32:04] | Beirdo: | niiicw |
[05:32:19] | Beirdo: | with the cutlist, we feed in raw frames from mythtranscode |
[05:32:57] | sphery: | wagnerrp: heh |
[05:33:12] | Beirdo: | omg, sloooow |
[05:33:30] | Beirdo: | 7fps. I told it to use -demuxer lavf (in case) |
[05:33:55] | Beirdo: | it's doing it... but it's whining about duplicate frames from 1080i source. odd |
[05:38:43] | kormoc: | it's what you get for recording the solid black show |
[05:39:00] | Beirdo: | hehe, nice try :) |
[05:41:31] | k-man: | somehow i pulled a muscle in my leg simply by crossing the road |
[05:42:01] | stoffel (stoffel!~quassel@p57B4CF75.dip.t-dialin.net) has joined #mythtv-users | |
[05:42:01] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v stoffel | |
[05:44:34] | Beirdo: | stop chasing the kangaroos |
[05:45:10] | bcgrown (bcgrown!~dave@216-19-189-175.dyn.novuscom.net) has quit (Quit: Leaving) | |
[05:46:39] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 260 seconds) | |
[05:46:56] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[05:51:07] | wagnerrp: | i hate buying stuff at monoprice, because im always thinking there are more cables i need to buy |
[05:51:13] | wagnerrp: | i can never actually finish checkout |
[05:51:34] | Beirdo: | heheeh |
[05:53:58] | kormoc (kormoc!~kormoc@unaffiliated/kormoc) has left #mythtv-users () | |
[05:54:49] | wagnerrp: | huh... the 60pc packs of velcro wire wraps are twice as expensive as 10x 6pc packs |
[05:55:00] | justdave (justdave!~dave@unaffiliated/justdave) has quit (Ping timeout: 265 seconds) | |
[05:58:13] | Beirdo: | heh |
[05:58:29] | wagnerrp: | yeah, dont know what it is... clearance or something |
[05:58:59] | wagnerrp: | $0.37/pack for the 6pc packs, $7.14/pack for the 60pc packs |
[05:59:40] | wagnerrp: | actually, 8.07 |
[06:01:56] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[06:01:58] | justdave (justdave!~dave@unaffiliated/justdave) has joined #mythtv-users | |
[06:04:43] | Captain_Murdoch: | anybody know if anybody has complained about compiling recent trunk and having it fail in videooutbase.cpp on an error in qurl.h? |
[06:05:14] | Beirdo: | haven't heard of, no |
[06:07:27] | ** wagnerrp is about to overtake stuarta ** | |
[06:07:47] | Captain_Murdoch: | it's odd. something appears to be #define-ing 'None', so when qurl.h is included by way of QDesktopWidget, it tries to define part of an enum as "0L = 0," |
[06:09:59] | stoffel (stoffel!~quassel@p57B4CF75.dip.t-dialin.net) has quit (Remote host closed the connection) | |
[06:10:57] | justdave (justdave!~dave@unaffiliated/justdave) has quit (Ping timeout: 265 seconds) | |
[06:11:17] | MavT (MavT!~MaverickT@220.233.86.111) has joined #mythtv-users | |
[06:11:26] | dustybin (dustybin!~dustybin@wizbox.org) has quit (Ping timeout: 265 seconds) | |
[06:11:51] | clusterboy (clusterboy!~clusterbo@unaffiliated/clusterboy) has quit (Ping timeout: 260 seconds) | |
[06:11:51] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has quit (Ping timeout: 260 seconds) | |
[06:12:19] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has quit (Ping timeout: 260 seconds) | |
[06:12:59] | dustybin (dustybin!dustybin@wizbox.org) has joined #mythtv-users | |
[06:13:04] | clusterboy (clusterboy!~clusterbo@unaffiliated/clusterboy) has joined #mythtv-users | |
[06:13:20] | dmb_ (dmb_!~dmb@unaffiliated/dmb) has joined #mythtv-users | |
[06:13:51] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[06:13:52] | dmb (dmb!~dmb@unaffiliated/dmb) has quit (Ping timeout: 264 seconds) | |
[06:15:07] | nicoaunico (nicoaunico!~nico@203-214-104-69.dyn.iinet.net.au) has joined #mythtv-users | |
[06:15:23] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has joined #mythtv-users | |
[06:15:43] | hpeter (hpeter!~hpeter@178-83-238-140.dclient.hispeed.ch) has joined #mythtv-users | |
[06:15:44] | nicoaunico: | any brisbane australia myth tv users here? |
[06:16:16] | nicoaunico: | or know why i might have trouble tuning into channel 9 and sbs |
[06:17:57] | sebrock (sebrock!~sebastian@hd5b90669.selukra.dyn.perspektivbredband.net) has joined #mythtv-users | |
[06:18:05] | k-man: | nutron: are they on the same transmitter as the other stations? |
[06:24:31] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[06:25:25] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has joined #mythtv-users | |
[06:34:10] | hpeter (hpeter!~hpeter@178-83-238-140.dclient.hispeed.ch) has quit (Quit: hpeter) | |
[06:34:25] | kormoc_afk (kormoc_afk!~kormoc@unaffiliated/kormoc) has joined #mythtv-users | |
[06:34:26] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v kormoc_afk | |
[06:34:31] | kormoc_afk is now known as kormoc | |
[06:38:44] | Beirdo: | OK, it seems that the CPU usage.... was the "Recording" blinking on and off |
[06:39:02] | Beirdo: | it's at 2% for the frontend without that there |
[06:39:07] | Beirdo: | and 48% with |
[06:39:16] | Beirdo: | that Recording thingy needs work |
[06:39:46] | Beirdo: | iamlindoro: ^^^ Any idea why that would be taking SO much CPU? |
[06:40:56] | kormoc: | which painter? |
[06:41:08] | Beirdo: | OpenGL, AFAIK |
[06:42:02] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv-users | |
[06:42:10] | Beirdo: | let me doublecheck |
[06:42:11] | kormoc: | arclight? |
[06:42:17] | Beirdo: | yep |
[06:42:32] | kormoc: | I'm fairly certain I don't have that much cpu usage on my box |
[06:42:35] | Beirdo: | it's the little alphapulse text area that seems to be the main difference |
[06:42:54] | Beirdo: | while it's recording, it takes 48% CPU in the program listing |
[06:43:00] | Beirdo: | while it's not... 2% |
[06:43:26] | Beirdo: | yup, OpenGL painter |
[06:43:38] | KraMer (KraMer!~mark@adsl-70-240-190-175.dsl.hstntx.swbell.net) has left #mythtv-users ("Leaving") | |
[06:44:27] | superdump (superdump!~rob@unaffiliated/superdump) has joined #mythtv-users | |
[06:44:34] | Beirdo: | that seems to be the only visibly different thing that could possibly be related |
[06:44:58] | croppa (croppa!~stuart@202-90-54-173.static.linearg.net) has joined #mythtv-users | |
[06:47:06] | Captain_Murdoch: | probably due to the # of things on screen and the non-clipping in the OpenGL painter. that screen is probably pretty busy since it has so many cells. |
[06:47:30] | Captain_Murdoch: | just like the alphapulse on the MythVideo screen in Graphite. |
[06:47:40] | Beirdo: | called 70times a second |
[06:47:43] | Captain_Murdoch: | yep |
[06:47:59] | Beirdo: | and SetRedraw redoes the whole screen? |
[06:48:45] | Beirdo: | I think I know parts of my local copies of themes that are about to get disabled |
[06:48:51] | Captain_Murdoch: | yeah, not everything is marked dirty, but the whole screen is redrawn I believe. |
[06:49:01] | Beirdo: | that's a sick amount of CPU usage for something so minor |
[06:49:13] | Beirdo: | I'd rather use it on commflagging :) |
[06:49:51] | Captain_Murdoch: | yeah, it has been mentioned to fix it so that OpenGL does clipping, but I'm not sure if anyone who knows enough to do it has been affected. for instance I think Daniel uses MythCenter. |
[06:50:41] | Beirdo: | seems rather odd to animate alpha changes at SUCH a high FPS |
[06:50:45] | Captain_Murdoch: | I looked into optimizing pulse one time, but didn't get any perf improvements with a lot of added logic, and it appears it's not our logic that's consuming all the CPU. |
[06:51:03] | Captain_Murdoch: | that's the normal refresh rate. |
[06:51:21] | Beirdo: | odd |
[06:51:33] | Beirdo: | wonder what's actually eating the CPU so bad in there |
[06:51:37] | Captain_Murdoch: | probably could go lower on that though, I can't recall at 3AM. :| |
[06:52:43] | Beirdo: | I guess it's calling pulse on every child of the main frame? |
[06:53:14] | Captain_Murdoch: | looks like my qurl.h compile issue was worked around by just using "class QNetworkReply;" instead of "#include <QNetworkReply>" in some of the animated image code. put the #include in the .cpp file instead of the .h. |
[06:53:16] | Beirdo: | whether or not they use it? |
[06:53:58] | Captain_Murdoch: | Beirdo, yeah, but that's not the CPU usage, I believe it's OpenGL redrawing. you can verify by viewing the same screen in the Qt painter which does do clipping. |
[06:54:14] | Beirdo: | fair enough |
[06:54:17] | kormoc: | oh wait, I'm using the QT painter |
[06:54:20] | Captain_Murdoch: | I think pulseis only called if items can pulse. |
[06:54:25] | Beirdo: | but OUCH, what a mess :) |
[06:54:32] | Beirdo: | no, it's called recursively for all |
[06:54:48] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[06:54:54] | Beirdo: | but HandleMovementPulse and HandleAlphaPulse return pretty quickly if not needed |
[06:54:58] | Captain_Murdoch: | ok, maybe my patch was to include a '::canPulse()" check and that didn't save much. |
[06:55:11] | Captain_Murdoch: | yeah, that sounds familiar. |
[06:55:38] | Beirdo: | so yeah, it must be how the redraw works |
[06:55:59] | Beirdo: | blargh, why is commflag doing this? |
[06:56:06] | Beirdo: | Player(0): Timed out waiting for free video buffers. |
[06:56:23] | Beirdo: | just wait, you silly program, it's not meant to be live playback! :) |
[06:56:43] | MavT (MavT!~MaverickT@220.233.86.111) has quit (Ping timeout: 258 seconds) | |
[06:57:28] | Beirdo: | anyways, the joys of using the same code, I guess |
[06:58:45] | Captain_Murdoch: | yeah, I've wondered about that in the past, whether it made sense to just use the libav* routines directly in the flagger. |
[06:59:10] | Beirdo: | I really don't care if it wants to "time out" :) |
[06:59:23] | Beirdo: | as long as it's working, it can go as fast as it can |
[07:00:03] | Captain_Murdoch: | part of the reason I kept it the way it is was to not have to deal with frame number differences. if it's a single "decoder" used for flagging and playback, theoretically frame numbers should match exactly during flagging and playback for a given frame |
[07:00:11] | Beirdo: | yeah |
[07:00:15] | Beirdo: | understood |
[07:00:44] | Beirdo: | I wonder if we can't selectively silence some "errors" based on what mode its running |
[07:01:08] | __benny__ (__benny__!~benny@static-195.22.66.26.addr.tdcsong.se) has joined #mythtv-users | |
[07:01:21] | Beirdo: | not that important in the grander scheme, I guess |
[07:03:53] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv-users | |
[07:04:46] | hpeter (hpeter!~hpeter@250-203.5-85.cust.bluewin.ch) has joined #mythtv-users | |
[07:05:41] | Virindi (Virindi!~jess@pool-71-178-197-62.washdc.fios.verizon.net) has quit (Remote host closed the connection) | |
[07:07:58] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 276 seconds) | |
[07:12:36] | nicoaunico (nicoaunico!~nico@203-214-104-69.dyn.iinet.net.au) has quit (Quit: nicoaunico) | |
[07:18:40] | tris (tris!tristan@camel.ethereal.net) has quit (Ping timeout: 240 seconds) | |
[07:30:05] | dmz (dmz!~dmz@64.203.207.101.dyn-cm-pool-54.hargray.net) has joined #mythtv-users | |
[07:42:21] | olejl_ (olejl_!~olejl@95.175.84.229) has quit (Read error: Connection reset by peer) | |
[07:42:26] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[07:42:49] | olejl_ (olejl_!~olejl@95.175.84.229) has joined #mythtv-users | |
[07:43:36] | tris (tris!tristan@camel.ethereal.net) has joined #mythtv-users | |
[07:45:18] | MilkBoy (MilkBoy!~milkboy@2a00:16a0::a800:c1ff:fe40:f4b2) has joined #mythtv-users | |
[07:45:33] | sybolt (sybolt!~sybolt@sybolt.xs4all.nl) has joined #mythtv-users | |
[07:45:38] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 264 seconds) | |
[08:00:44] | peque (peque!~pbj@mail.insatech.com) has joined #mythtv-users | |
[08:07:32] | rileyp (rileyp!~rileyp@91.70.96.58.static.exetel.com.au) has joined #mythtv-users | |
[08:10:33] | xris (xris!~xris@xris.forevermore.net) has quit (Ping timeout: 252 seconds) | |
[08:11:49] | awoodland (awoodland!~woodalan@nat65.mia.three.co.uk) has joined #mythtv-users | |
[08:16:21] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has quit (Ping timeout: 245 seconds) | |
[08:19:04] | Jay2k1 (Jay2k1!~J@85.183.203.242) has joined #mythtv-users | |
[08:29:33] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has joined #mythtv-users | |
[08:46:14] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 264 seconds) | |
[08:46:28] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[08:54:53] | bashtoni (bashtoni!~sam@78-105-173-119.zone3.bethere.co.uk) has joined #mythtv-users | |
[08:56:28] | hashbang (hashbang!~hashbang@cse-ajb.cse.bris.ac.uk) has joined #mythtv-users | |
[09:37:43] | peque (peque!~pbj@mail.insatech.com) has quit (Quit: Ex-Chat) | |
[09:39:03] | duerF (duerF!~tommi@heima.tommi.org) has quit (Quit: Leaving) | |
[09:41:08] | awoodland (awoodland!~woodalan@nat65.mia.three.co.uk) has quit (Ping timeout: 240 seconds) | |
[09:41:23] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 260 seconds) | |
[09:41:36] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[09:58:53] | justinh: | hmm stupid update-notifier popup ruining our frontend experience |
[09:59:06] | justinh: | so now I've used gconftool to disable it :-) |
[10:06:16] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[10:07:50] | xris (xris!~xris@xris.forevermore.net) has joined #mythtv-users | |
[10:08:56] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 255 seconds) | |
[10:14:15] | lyricnz (lyricnz!~simonrobe@ppp118-209-176-251.lns20.mel6.internode.on.net) has joined #mythtv-users | |
[10:14:31] | blizzard_ (blizzard_!~blizzard@rajraj.nu) has quit (Ping timeout: 260 seconds) | |
[10:15:43] | shady (shady!sakus@if.ififi.fi) has quit (Remote host closed the connection) | |
[10:15:52] | shady (shady!sakus@if.ififi.fi) has joined #mythtv-users | |
[10:20:36] | awoodland (awoodland!~woodalan@intmlp0486.intm.aber.ac.uk) has joined #mythtv-users | |
[10:23:19] | blizzard_ (blizzard_!~blizzard@rajraj.nu) has joined #mythtv-users | |
[10:28:00] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B22392B.dip.t-dialin.net) has joined #mythtv-users | |
[10:28:38] | Jay2k1: | heh |
[10:28:51] | Jay2k1: | i update the box so frequently that i never see that popup |
[10:29:09] | Jay2k1: | i see the "wired network connection established" popup though everytime i boot up |
[10:38:07] | justinh: | I hate ubuntu for all its fricking nagging |
[10:38:26] | justinh: | wuh wuh wuh, wah wah wah. I'm not a fscking NOOB |
[10:38:53] | justinh: | and I don't CARE if XYZ updates are available. if the box works I want to keep it that way by NOT updating crap willy nilly |
[10:38:59] | Jay2k1: | if only noobs would fsck anyway |
[10:42:31] | Jay2k1: | hm, i guess the fact that i never experienced an update breaking anything makes me update regularly |
[10:42:36] | Jay2k1: | twice a week or so |
[10:47:07] | justinh: | my frontend never even sees the internet so I really don't see any point updating it |
[10:47:50] | justinh: | I've already experienced catastrophic regressions in the intel video driver and/or xorg |
[10:56:28] | Typosu (Typosu!~moose@S010600195b863efb.ed.shawcable.net) has quit (Read error: Connection reset by peer) | |
[10:59:03] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Quit: Leaving.) | |
[11:03:28] | gbee (gbee!~gbee@cpc2-derb9-0-0-cust259.derb.cable.virginmedia.com) has joined #mythtv-users | |
[11:03:28] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v gbee | |
[11:03:36] | gbee: | !seen devinheitmuller |
[11:03:36] | MythLogBot: | devinheitmuller has not been seen here |
[11:03:48] | gbee: | !seen Devinheitmuller |
[11:03:48] | MythLogBot: | Devinheitmuller has not been seen here |
[11:04:05] | sid3windr: | [13|17:21:21] [-] [:] devinheitmueller [~devin@pool-108-6-2-241.nycmny.fios.verizon.net ] has left #mythtv-users [] |
[11:04:10] | sid3windr: | 4 days ago :) |
[11:04:15] | sid3windr: | minus 4h |
[11:04:24] | gbee: | missing the e in mueller :) |
[11:04:29] | gbee: | sid3windr: thanks |
[11:04:46] | sid3windr: | ah heh, I wouldn't have remembered the e either ;) just did a /lastlog devin ;) |
[11:05:42] | gbee: | I'll send him an email instead |
[11:06:38] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 265 seconds) | |
[11:07:43] | clusterboy (clusterboy!~clusterbo@unaffiliated/clusterboy) has quit (Ping timeout: 265 seconds) | |
[11:08:15] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[11:25:03] | awoodland (awoodland!~woodalan@intmlp0486.intm.aber.ac.uk) has quit (Ping timeout: 258 seconds) | |
[11:27:39] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B22392B.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[11:27:42] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv-users | |
[11:28:29] | hipitihop (hipitihop!~denis@203.132.229.44) has quit (Remote host closed the connection) | |
[11:33:55] | justinh: | hmm aparently virgin media are going to be using TiVo software on their DVRs from Q4 |
[11:43:30] | gbee: | yup |
[11:43:52] | gbee: | have you seen what Virgin One is being rebranded to by Sky? |
[11:45:05] | jduggan: | what is it being rebranded to ? |
[11:45:12] | ** jduggan prepares to cringe ** | |
[11:46:16] | gbee: | the very confusing "Channel One" |
[11:46:57] | gbee: | less cringe worthy and more a deliberate attempt to invite confusion with BBC One |
[11:47:33] | jduggan: | they should try confusing it with dave |
[11:47:39] | jduggan: | because its pretty much, dave |
[11:48:34] | justdave (justdave!~dave@unaffiliated/justdave) has joined #mythtv-users | |
[11:49:48] | waxhead_ (waxhead_!~pete@ppp121-45-217-60.lns20.cbr1.internode.on.net) has quit (Quit: Ex-Chat) | |
[11:50:47] | justinh: | nah, it doesn't have anything like enough repeats on it to be like Dave |
[11:51:28] | justinh: | Dave is actually 2 channels. Dave morning, and Dave afternoon.. Dave afternoon is like Dave morning+6 |
[11:58:21] | justinh: | wonder if only the name is changing anyway.. I always dread rescanning |
[11:59:09] | justinh: | think I might start a petition to get all pay TV kicked off terrestrial telly |
[12:00:50] | justinh: | the new Sky stuff coming to 'freeview' is only going to confuse people |
[12:01:55] | justinh: | get TUTV etc kicked off from freeview muxes. if they want a service let them get their own mux & let freeview better use available bandwidth.. let's have some broadcast quality back |
[12:07:52] | gbee: | justinh: they are saying no rescan is required, LCN will remain the same too |
[12:08:12] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[12:10:39] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[12:18:44] | awoodland (awoodland!~woodalan@intmlp0486.intm.aber.ac.uk) has joined #mythtv-users | |
[12:20:12] | justinh: | how very forward thinking of them :) |
[12:26:32] | gbee: | to the best of my knowledge, they've not said that the content won't change, I half expect that they'll take the higher rating content and put it on their subscription channels leaving 'Channel One' as a dumping ground for old crap just like Sky Three |
[12:27:08] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[12:27:24] | clyons (clyons!~clyons@unaffiliated/clyons) has joined #mythtv-users | |
[12:28:12] | justinh: | yeah already waved goodbye to Chuck |
[12:31:58] | justinh: | maybe one day OFCOM will force Sky to open things up a bit & allow 3rd party hardware |
[12:32:33] | justinh: | I don't mind paying for some stuff I want to see, if I'm not restricted to using a completely impotent platform like theirs |
[12:33:54] | justinh: | infact it'd be nice if VM could just put things on their ondemand & I'll pay 50p an episode |
[12:35:12] | justinh: | god, imagine everybody's revenue loss if we only payed for what we actually watch ;) |
[12:39:56] | inordkuo (inordkuo!~inorkuo@nsc64.16.142-198.newsouth.net) has joined #mythtv-users | |
[12:42:29] | RobertLaptop (RobertLaptop!~RobertLap@pool-173-69-205-54.bltmmd.fios.verizon.net) has quit (Quit: Leaving) | |
[12:44:05] | mzb is now known as mzb_zz | |
[12:46:39] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Ping timeout: 260 seconds) | |
[12:48:26] | rossand (rossand!~aross@CPE485b390978ce-CM00222ddf42dd.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[12:49:52] | mzb_zz is now known as mzb | |
[12:51:02] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 264 seconds) | |
[12:51:16] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[13:05:37] | gbee: | justinh: I wonder what effect that would have on the overall quality of programming |
[13:05:51] | Twiggy2cents (Twiggy2cents!~Twiggy@12.182.96.2) has joined #mythtv-users | |
[13:06:23] | justinh: | hmm. it hasn't really done anything for the film industry ;) |
[13:07:58] | gbee: | the BBC would have us believe that they can only create quality stuff because they aren't solely concerned by achieving the highest ratings in a timeslot, if ITV/Sky et al are indications of what the purely commercial process turns out then viva the BBC |
[13:08:30] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B223013.dip.t-dialin.net) has joined #mythtv-users | |
[13:09:09] | justinh: | I think the BBC say one thing & do another |
[13:11:40] | clyons (clyons!~clyons@unaffiliated/clyons) has quit (Ping timeout: 240 seconds) | |
[13:11:47] | justinh: | grrr. if one more person acts dismissively when I tell them there haven't really been many sleepless nights yet I'll chin them |
[13:12:38] | justinh: | 2 or 3 bad nights, yes. hard work, sure... but no aspect of the part I'm playing is grudgingly carried out & they just don't seem to get it |
[13:14:31] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[13:18:38] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B223013.dip.t-dialin.net) has quit (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) | |
[13:19:41] | cocoa117 (cocoa117!~cocoa117@wk-28-160.guest.rdg.ac.uk) has joined #mythtv-users | |
[13:25:33] | clyons (clyons!~clyons@unaffiliated/clyons) has joined #mythtv-users | |
[13:41:51] | AriX_ (AriX_!~AriX@nat.syssrc.com) has joined #mythtv-users | |
[13:42:40] | olejl_ (olejl_!~olejl@95.175.84.229) has quit (Read error: Connection reset by peer) | |
[13:43:11] | olejl_ (olejl_!~olejl@95.175.84.229) has joined #mythtv-users | |
[13:43:48] | andreax (andreax!~andreaz@p57B91FE5.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[13:48:16] | andreax (andreax!~andreaz@p57B91FE5.dip.t-dialin.net) has joined #mythtv-users | |
[13:51:47] | mzb is now known as mzb_zz | |
[13:51:48] | PMantis (PMantis!~sswitzer@cpe-74-65-56-13.rochester.res.rr.com) has quit (Quit: Goodbye!) | |
[13:51:50] | RobertLaptop (RobertLaptop!~RobertLap@63.68.135.4) has joined #mythtv-users | |
[13:54:13] | mzb_zz is now known as mzb | |
[13:58:09] | mzb (mzb!~mzb@ppp108-88.static.internode.on.net) has left #mythtv-users () | |
[14:07:45] | clyons (clyons!~clyons@unaffiliated/clyons) has quit (Quit: Leaving) | |
[14:10:58] | FredYerkes (FredYerkes!~fyerkes@99-6-102-81.lightspeed.milwwi.sbcglobal.net) has joined #mythtv-users | |
[14:11:48] | mzb (mzb!~mzb@ppp108-88.static.internode.on.net) has joined #mythtv-users | |
[14:16:27] | npm (npm!~npm@cpe-76-169-12-237.socal.res.rr.com) has quit (Remote host closed the connection) | |
[14:22:20] | npm (npm!~npm@cpe-76-169-12-237.socal.res.rr.com) has joined #mythtv-users | |
[14:22:28] | rileyp (rileyp!~rileyp@91.70.96.58.static.exetel.com.au) has quit (Ping timeout: 246 seconds) | |
[14:28:32] | mcl0vin (mcl0vin!~piper69@unaffiliated/dacs) has quit (Read error: No route to host) | |
[14:28:44] | mcl0vin (mcl0vin!~piper69@69.155.81.25) has joined #mythtv-users | |
[14:30:38] | JJ1 (JJ1!~jjensen@jeffjensen.dsl.visi.com) has joined #mythtv-users | |
[14:30:51] | JJ1 (JJ1!~jjensen@jeffjensen.dsl.visi.com) has quit (Client Quit) | |
[14:35:37] | __benny__ (__benny__!~benny@static-195.22.66.26.addr.tdcsong.se) has quit (Read error: No route to host) | |
[14:35:37] | olejl_ (olejl_!~olejl@95.175.84.229) has quit (Read error: Connection reset by peer) | |
[14:36:19] | olejl_ (olejl_!~olejl@95.175.84.229) has joined #mythtv-users | |
[14:45:48] | streeter (streeter!~streeter@user-24-214-254-79.knology.net) has joined #mythtv-users | |
[14:46:54] | mzb (mzb!~mzb@ppp108-88.static.internode.on.net) has quit (Quit: Quit? I never quit! ... well, hardly ever.) | |
[14:48:19] | mzb (mzb!~mzb@ppp108-88.static.internode.on.net) has joined #mythtv-users | |
[14:50:11] | mr_claus1 (mr_claus1!~crosenbe@ppp-93-104-5-177.dynamic.mnet-online.de) has joined #mythtv-users | |
[14:50:58] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v GreyFoxx | |
[14:51:10] | mr_claus (mr_claus!~crosenbe@ppp-93-104-5-177.dynamic.mnet-online.de) has quit (Ping timeout: 246 seconds) | |
[14:55:53] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Read error: Operation timed out) | |
[14:57:44] | dashs (dashs!~dave@dashs.denver.co.us) has quit (Quit: Leaving) | |
[14:58:16] | wagnerrp: | NAB and RIAA want to make FM chips required in cell phones by law.... why? |
[14:58:37] | wagnerrp: | i already dont want to listen to music on my cell phone |
[14:58:43] | atlanta800 (atlanta800!~atlanta80@c-98-249-9-235.hsd1.va.comcast.net) has joined #mythtv-users | |
[14:58:55] | wagnerrp: | and were i to have one that i might, it would have several GB of storage for stuff i would want to listen to |
[14:59:42] | atlanta800: | I upgraded to 0.23.1 around a month ago, and now none of my frontends will show any recordings after that. The database shows them, MythWeb shows them, I can stream via ASX, but none of the front ends will show them. Help? |
[14:59:59] | atlanta800: | I can see recordings before 7/7, but none after |
[15:00:19] | wagnerrp: | are these recordings or livetv? |
[15:00:30] | atlanta800: | nope, regular scheduled recordings |
[15:00:32] | abqjp (abqjp!~abqjp@97-119-160-71.albq.qwest.net) has joined #mythtv-users | |
[15:00:55] | wagnerrp: | is it possible you have two separate databases, and the frontends are reading off the old one? |
[15:00:56] | atlanta800: | didn't change any of them, there's literally an episode of Tosh.0 recorded on 7/7 that shows, and one on 7/14 that doesn't |
[15:01:24] | bashtoni (bashtoni!~sam@78-105-173-119.zone3.bethere.co.uk) has quit (Quit: leaving) | |
[15:01:41] | atlanta800: | well, I thought that too, but I looked through mythconverg with the mysql command line and all of the recordings (before and after) show up in that database |
[15:01:52] | wagnerrp: | open up the ~/.mythtv/config.xml on each frontend, and make sure they are exactly the same |
[15:02:05] | wagnerrp: | same host, same database |
[15:03:11] | atlanta800: | erm wait, MythWeb only shows post-update, and the frontends only show post-update, but the mysql database itself lists all of them |
[15:03:34] | atlanta800: | frontends only show pre-update* |
[15:04:39] | atlanta800: | config.xml matches up, is there one for mythweb? |
[15:05:02] | wagnerrp: | in the mythweb.conf include |
[15:06:55] | atlanta800: | it matches up as well |
[15:07:33] | lotia_away is now known as lotia | |
[15:08:00] | atlanta800: | any ideas? |
[15:10:18] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv-users | |
[15:10:44] | wagnerrp: | youve got some sort of show filter on |
[15:12:07] | atlanta800: | how do I get it off?\ |
[15:12:30] | wagnerrp: | hit 'm' in the 'watch recordings' screen |
[15:13:33] | atlanta800: | it's set to all programs... |
[15:14:03] | elmojo (elmojo!~elmojo@unaffiliated/elmojo) has quit (Remote host closed the connection) | |
[15:14:13] | gbee (gbee!~gbee@cpc2-derb9-0-0-cust259.derb.cable.virginmedia.com) has left #mythtv-users ("Gone") | |
[15:18:56] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[15:19:01] | J-e-f-f-A: | Beirdo: nice progress on the commfagger... Commflagging was low-profile when I was all SD MPEG2 recordings, but now that I'm h.264 HD, it's kicing my system's butt... What processor are you running btw? |
[15:19:22] | ** J-e-f-f-A can't type today... "kicking"... ** | |
[15:23:00] | wagnerrp: | pentium-d |
[15:23:14] | J-e-f-f-A: | wagnerrp: wow, that's really impressive then! |
[15:29:23] | mr_claus1: | wagnerrp: i tried to scan the channels with mythbuntu but it didn't work like with scan on the console, "scan /usr/share/dvb/dvb-c/de-Munehcne" gives me somethink like "0x0000 0x6dca: pmt_pid 0x0064 ARD — Das Erste (running)", but mythbuntu didn't find any channell, probably i forgot something to configure but i didn't know whats missing |
[15:38:47] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B223A5D.dip.t-dialin.net) has joined #mythtv-users | |
[15:48:02] | olejl_ (olejl_!~olejl@95.175.84.229) has quit (Ping timeout: 264 seconds) | |
[15:54:58] | Beirdo: | J-e-f-f-A: Pentium-D here |
[15:55:03] | Beirdo: | aw MAN! |
[15:55:18] | Beirdo: | markk just added *more* alphapulse stuff?! |
[15:55:33] | Beirdo: | just what I need to keep my CPU usage down :) |
[15:56:17] | winslow_ (winslow_!~chatzilla@c-98-240-124-11.hsd1.tn.comcast.net) has joined #mythtv-users | |
[15:56:19] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Ping timeout: 276 seconds) | |
[15:56:43] | Beirdo: | that particular eye-candy is eating CPU for me with OpenGL painter |
[15:58:35] | wagnerrp: | alphapulse? |
[15:59:08] | Beirdo: | yeah |
[15:59:47] | winslow_ is now known as winslow | |
[15:59:52] | Beirdo: | it changes the alpha 70 times per second, giving almost a flashing effect... the "Recording" string on the program list in Arclight is where I noticed it |
[16:00:02] | Beirdo: | looks great. |
[16:00:13] | Beirdo: | eats CPU like nobody's business |
[16:00:21] | J-e-f-f-A: | Beirdo: (Re: Commflagger) Nice improvements. ;-) |
[16:00:43] | Beirdo: | most of the work was done by danielk on that :) |
[16:00:45] | Beirdo: | but thanks |
[16:00:54] | Beirdo: | time to catch a bus to work... sigh |
[16:01:06] | hashbang (hashbang!~hashbang@cse-ajb.cse.bris.ac.uk) has quit (Remote host closed the connection) | |
[16:01:13] | wagnerrp: | oh right... that 70Hz thing that was sticking peoples processors at 7/14% usage way back |
[16:01:17] | J-e-f-f-A: | ah, Kudos to both of you. ;-) |
[16:02:36] | awoodland (awoodland!~woodalan@intmlp0486.intm.aber.ac.uk) has quit (Ping timeout: 245 seconds) | |
[16:07:28] | atlanta800 (atlanta800!~atlanta80@c-98-249-9-235.hsd1.va.comcast.net) has quit (Quit: Leaving) | |
[16:14:46] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[16:17:33] | hpeter (hpeter!~hpeter@250-203.5-85.cust.bluewin.ch) has quit (Quit: hpeter) | |
[16:18:31] | GuySoft: | wagnerrp, does this seem reasonable?: http://svn.mythtv.org/trac/ticket/8770#comment:12 I just think that user is confusing stuarta |
[16:19:17] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[16:24:56] | mzb is now known as mzb_zz | |
[16:27:14] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B223A5D.dip.t-dialin.net) has quit (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) | |
[16:28:39] | Beirdo: | wagnerrp: well, at 1080i, it's pegging my CPU at 48% :) |
[16:29:37] | Lord_Deathscythe (Lord_Deathscythe!~chris@h187.138.20.98.dynamic.ip.windstream.net) has joined #mythtv-users | |
[16:30:05] | [R]: | pegging |
[16:30:07] | ** [R] giggles ** | |
[16:30:42] | wagnerrp: | GuySoft: as mentioned, i dont use EIT so i know next to nothing about it |
[16:30:55] | AriX_ (AriX_!~AriX@nat.syssrc.com) has quit (Ping timeout: 252 seconds) | |
[16:31:13] | wagnerrp: | Beirdo: this was some spinlock interaction caused by the 70Hz pulse and 60Hz refresh rate |
[16:31:17] | GuySoft: | wagnerrp, ok then, thanks for the help so far none the less |
[16:34:01] | KaZeR (KaZeR!~kazer@181.149.81-79.rev.gaoland.net) has quit (Ping timeout: 276 seconds) | |
[16:37:09] | Goga777 (Goga777!~Goga777@shpd-78-36-177-34.static.vologda.ru) has joined #mythtv-users | |
[16:43:01] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Ping timeout: 245 seconds) | |
[16:43:10] | itscrimetime (itscrimetime!~yo@c-68-44-200-73.hsd1.pa.comcast.net) has quit (Ping timeout: 246 seconds) | |
[16:46:42] | KaZeR (KaZeR!~kazer@74.43.195-77.rev.gaoland.net) has joined #mythtv-users | |
[16:46:46] | _abbenormal (_abbenormal!~abbenorma@c-24-56-206-42.customer.broadstripe.net) has joined #mythtv-users | |
[16:47:46] | cocoa117 (cocoa117!~cocoa117@wk-28-160.guest.rdg.ac.uk) has quit (Quit: Leaving) | |
[16:49:33] | Jay2k1 (Jay2k1!~J@85.183.203.242) has quit () | |
[16:49:58] | hpeter (hpeter!~hpeter@178-83-238-140.dclient.hispeed.ch) has joined #mythtv-users | |
[16:55:41] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v xris | |
[16:56:22] | dewman (dewman!~dewman@lennon-ubr-64-85-159-8.power-net.net) has joined #mythtv-users | |
[16:58:35] | FredYerkes (FredYerkes!~fyerkes@99-6-102-81.lightspeed.milwwi.sbcglobal.net) has quit (Quit: leaving) | |
[17:12:08] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[17:13:03] | stoffel (stoffel!~quassel@p57B4D29A.dip.t-dialin.net) has joined #mythtv-users | |
[17:13:03] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v stoffel | |
[17:13:18] | Slim-Kimbo (Slim-Kimbo!~Kimbo@86.134.132.41) has joined #mythtv-users | |
[17:14:17] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B223A5D.dip.t-dialin.net) has joined #mythtv-users | |
[17:25:12] | GrahamIRC (GrahamIRC!~GrahamIRC@93-97-162-127.zone5.bethere.co.uk) has joined #mythtv-users | |
[17:26:02] | Goga777 (Goga777!~Goga777@shpd-78-36-177-34.static.vologda.ru) has quit (Remote host closed the connection) | |
[17:28:59] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[17:31:18] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[17:40:41] | hpeter (hpeter!~hpeter@178-83-238-140.dclient.hispeed.ch) has quit (Quit: hpeter) | |
[17:41:00] | Jay2k1 (Jay2k1!~J@f054054232.adsl.alicedsl.de) has joined #mythtv-users | |
[17:41:51] | dmz (dmz!~dmz@64.203.207.101.dyn-cm-pool-54.hargray.net) has quit (Quit: Ex-Chat) | |
[17:49:26] | Defense|Twin (Defense|Twin!~jepz@f054003137.adsl.alicedsl.de) has joined #mythtv-users | |
[17:54:02] | dmz (dmz!~dmz@64.203.207.101.dyn-cm-pool-54.hargray.net) has joined #mythtv-users | |
[17:56:31] | msphobia (msphobia!~yellickj@cpe-076-182-020-222.nc.res.rr.com) has joined #mythtv-users | |
[17:59:57] | streeter (streeter!~streeter@user-24-214-254-79.knology.net) has quit (Quit: Leaving) | |
[18:00:36] | superdump (superdump!~rob@unaffiliated/superdump) has quit (Quit: WeeChat 0.3.2) | |
[18:01:24] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[18:04:11] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B223A5D.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[18:08:46] | msphobia: | I'm sure this is answered somewhere, but search as I might, I can't seem to find it. It seems all of the new themes really rely on having cover art available in order to look good. I've seen all sorts of documentation for getting cover art in mythvideo, but in regards to just typical "Watch Recordings" content, I can't seem to find any references in the frontend config, the wiki, user manual, etc. Can someone direct me how to g |
[18:10:17] | wagnerrp: | coverart is not fully supported for recordings |
[18:10:34] | wagnerrp: | there are no definitions in the database to specify where to actually find the artwork |
[18:10:55] | wagnerrp: | so the code that is in there just works off the show titles, and makes a guess at where the artwork might be found in the mythvideo folders |
[18:11:13] | wagnerrp: | that means you have to have mythvideo set up and configured |
[18:11:29] | wagnerrp: | and you either need to have mythvideo pull artwork for matching shows that you have stored in mythvideo |
[18:11:37] | hadees (hadees!~hadees@64.132.24.100) has joined #mythtv-users | |
[18:11:37] | wagnerrp: | or you need to run JAMU and let it pull artwork for the recordings |
[18:11:47] | Gibby1313 (Gibby1313!~gibby@204.118.10.244) has quit (Remote host closed the connection) | |
[18:12:43] | msphobia: | does the artwork need to be pulled to each frontend? or can I put it into a storage directory? |
[18:13:21] | wagnerrp: | set up mythvideo to use storage groups, and the artwork will be stored in those folders on the backend |
[18:13:39] | msphobia: | ok, thanks! |
[18:18:43] | stoffel (stoffel!~quassel@p57B4D29A.dip.t-dialin.net) has quit (Remote host closed the connection) | |
[18:21:05] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has quit (Read error: Connection reset by peer) | |
[18:29:48] | KraMer (KraMer!~mark@adsl-70-240-190-175.dsl.hstntx.swbell.net) has joined #mythtv-users | |
[18:29:51] | beata- (beata-!beata@c-69-137-146-82.hsd1.md.comcast.net) has quit (Ping timeout: 240 seconds) | |
[18:34:26] | beata- (beata-!~beata@c-69-137-146-82.hsd1.md.comcast.net) has joined #mythtv-users | |
[18:36:32] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has joined #mythtv-users | |
[18:37:41] | hpeter (hpeter!~hpeter@178-83-238-140.dclient.hispeed.ch) has joined #mythtv-users | |
[18:39:52] | gbee (gbee!~gbee@cpc2-derb9-0-0-cust259.derb.cable.virginmedia.com) has joined #mythtv-users | |
[18:39:52] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v gbee | |
[18:40:00] | gbee: | !seen Dibblah |
[18:40:00] | MythLogBot: | Dibblah was last seen 32 days 1 hour 9 minutes 1 second ago |
[18:40:26] | gbee: | well I hope that he's ok |
[18:40:39] | iamlindoro: | He mentioned being done w/ MythTV |
[18:41:42] | iamlindoro: | 16-07–2010 10:26:35 < Dibblah!~Dibblah@cpc2-dund11-2-0-cust288.sgyl.cable.virginmedia.com : Ah, what the hell. I'm not even running Myth any more, so I might as well just leave it. |
[18:41:50] | iamlindoro: | 16-07–2010 10:27:15 > iamlindoro: Dibblah: No more Myth? |
[18:41:51] | iamlindoro: | 16-07–2010 10:27:54 < Dibblah!~Dibblah@cpc2-dund11-2-0-cust288.sgyl.cable.virginmedia.com : Too many encryption issues, ironically. I know what I'm talking about, where I think James may not. |
[18:44:18] | guysoft22: | is there a mythtv windows build for dummies? |
[18:44:56] | iamlindoro: | You can build it with the build script, does all the work for you |
[18:45:05] | iamlindoro: | Though hopefully you don't hope to run the backend there |
[18:45:25] | iamlindoro: | since we have no tuner support there, and even mythfilldatabase doesn't run on windows last I checked |
[18:45:35] | Beirdo: | the demo tuner might run :) |
[18:45:50] | Beirdo: | pretty pointless though |
[18:45:59] | beata- (beata-!~beata@c-69-137-146-82.hsd1.md.comcast.net) has quit (Ping timeout: 260 seconds) | |
[18:46:07] | hpeter (hpeter!~hpeter@178-83-238-140.dclient.hispeed.ch) has quit (Quit: hpeter) | |
[18:46:12] | gbee: | iamlindoro: mythfilldatabase not working, have any details on that? Not that I'm in a position to test a fix |
[18:46:30] | iamlindoro: | gbee: Think there is still a pending ticket closure from Jeff Lu with a patch |
[18:46:50] | iamlindoro: | gbee: It was in amongst a series of other patches-- think Mark has it under control and had a good reason for holding off on what was left |
[18:47:08] | iamlindoro: | But I don't remember the reason |
[18:47:11] | beata- (beata-!~beata@c-69-137-146-82.hsd1.md.comcast.net) has joined #mythtv-users | |
[18:47:31] | gbee: | ok, at least someone is looking at it |
[18:47:57] | iamlindoro: | gbee: It seems I was mistaken, Mark committed that part of the fix a year ago |
[18:48:07] | iamlindoro: | Though the ticket is still open with one more outstanding patch |
[19:09:51] | guysoft22: | iamlindoro, i can try and build a debian livecd i guess or something.. if it will make it publicly available.. but that would be only in a month and a half, i am flying to India in 5 days :) |
[19:10:22] | iamlindoro: | guysoft22: Will make what publicly available? Why can't people in your region use mythbuntu et al? |
[19:10:45] | guysoft22: | iamlindoro, they can.. but they are lazy.. |
[19:11:14] | iamlindoro: | It doesn't get any easier than mythbuntu |
[19:11:25] | iamlindoro: | and nothing any individual is going to conjure up in a few weeks will match it |
[19:11:27] | guysoft22: | iamlindoro, i ran for like 4 years install parties here, believe me i know |
[19:11:52] | guysoft22: | iamlindoro, ok, ill look in to it if required |
[19:16:08] | lotia is now known as lotia_away | |
[19:20:31] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[19:22:57] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[19:25:07] | __benny__ (__benny__!~benny@h87-241-87-70.dynamic.se.alltele.net) has joined #mythtv-users | |
[19:25:50] | wagnerrp: | does trac run behind squid? |
[19:27:13] | wagnerrp: | no, must be the user behind it |
[19:27:35] | wagnerrp: | somewhat odd to find a compromised IE6/WinXP machine behind a squid proxy |
[19:28:27] | GrahamIRC (GrahamIRC!~GrahamIRC@93-97-162-127.zone5.bethere.co.uk) has quit (Quit: Leaving.) | |
[19:28:58] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has quit (Read error: Connection reset by peer) | |
[19:40:40] | Jay2k1 (Jay2k1!~J@f054054232.adsl.alicedsl.de) has quit (Ping timeout: 276 seconds) | |
[19:43:04] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[19:45:00] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has joined #mythtv-users | |
[19:49:33] | cdpuk (cdpuk!~chris@91.84.144.76) has joined #mythtv-users | |
[19:52:10] | wagnerrp: | how does adobe support h264 in flash? |
[19:52:25] | wagnerrp: | doesnt that mean they have to pay a license fee for every downloaded copy of the flash installer? |
[19:54:50] | AndyCap: | wagnerrp: they might get a break if they have patents of their own in the pool? |
[19:55:34] | AndyCap: | ah, they're not. http://www.mpegla.com/main/programs/AVC/Pages/Licensors.aspx |
[19:56:03] | Lord_Deathscythe (Lord_Deathscythe!~chris@h187.138.20.98.dynamic.ip.windstream.net) has quit (Quit: I am called onward) | |
[19:57:56] | RockHound (RockHound!~quassel@d013095.adsl.hansenet.de) has joined #mythtv-users | |
[19:59:04] | AndyCap: | seems the royalty cap is 5 million dollars. |
[20:00:58] | GuySoft: | AndyCap, oh sure! Let me just check in my wallet.. ah oops FOSS developer |
[20:02:00] | AndyCap: | GuySoft: well, I think adobe has more money than that. :P |
[20:02:32] | AndyCap: | GuySoft: but it seems they only imagine codec software being "sold" http://www.mpegla.com/main/programs/AVC/Docum . . . sSummary.pdf |
[20:04:17] | wagnerrp: | so if the community banded together and bought a license for ffmpeg |
[20:04:35] | wagnerrp: | it would be a one-time hit, and everyone could then forth link into those libraries at will legally? |
[20:04:41] | wagnerrp: | that doesnt seem correct |
[20:05:02] | AndyCap: | I dunno. seems like they think you make another product if you redistribute it |
[20:05:10] | RockHound (RockHound!~quassel@d013095.adsl.hansenet.de) has quit (Ping timeout: 240 seconds) | |
[20:05:21] | AndyCap: | and it looks like they want more money if you're a streaming service or something. :P |
[20:05:33] | wagnerrp: | but you dont redistribute it |
[20:05:43] | AndyCap: | sublicenses for encoder and decoder manufacturers granting the right to manufacture and |
[20:05:43] | wagnerrp: | people download the ffmpeg libraries from ffmpeg |
[20:05:46] | AndyCap: | sell and a limited right only for personal consumer use by or between end users |
[20:06:01] | AndyCap: | wagnerrp: oh, and it's 5 millon a year. |
[20:06:12] | high-rez: | Are they actually enforcing the license now ? |
[20:06:13] | wagnerrp: | ah, well thats different then |
[20:06:17] | wagnerrp: | no |
[20:06:32] | wagnerrp: | there was a bit of a scare a couple months ago, but nothing ever came of it |
[20:06:49] | high-rez: | A bit of a scare, then google released vp8? ;) |
[20:07:03] | wagnerrp: | no, completely independent of that |
[20:07:20] | AndyCap: | so for each year one distributes ffmpeg I guess one would have to pay up 5 million for the h264 pool, and maybe the mpeg2 pool, and vc-1 pool and atsc pool. :P |
[20:07:45] | high-rez: | There's an ATSC pool? |
[20:07:53] | wagnerrp: | sure, why not |
[20:07:55] | AndyCap: | What I don't get is why these patent pools haven't been attacked by a patent troll |
[20:08:09] | high-rez: | A business method patent for patent pooling? |
[20:08:15] | AndyCap: | since they do not guarantee anything except a license to the patents they actually hold |
[20:08:34] | AndyCap: | Participation in the License is voluntary on the part of essential patent holders, however. |
[20:09:08] | high-rez: | Is there another libav* sync coming beofre 0.24 – or will there be no vp8 in 0.24 ? |
[20:09:27] | iamlindoro: | yes, there is a resync coming |
[20:09:43] | AndyCap: | high-rez: any material in vp8? |
[20:09:48] | high-rez: | Shaaaweeet |
[20:10:09] | iamlindoro: | Since there is no open source encoder, probably not all *that* critical |
[20:10:18] | high-rez: | AndyCap: That's besides the point ;) |
[20:10:33] | iamlindoro: | No danger of anyone actually using VP8 much any time soon |
[20:11:51] | AndyCap: | Dirac naow! |
[20:12:15] | high-rez: | Dirac is too british for anyone to care about. |
[20:16:02] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[20:16:29] | wagnerrp: | 'cept for youtube/googlevideo |
[20:17:17] | wagnerrp: | does google video offer vp8 downloads, or just h264? |
[20:18:34] | gbee: | wagnerrp: apparently they are swapping a lot of content over to vp8, but finding those videos among the thousands already encoded with h.264 is another matter |
[20:18:38] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[20:18:51] | AndrewNC (AndrewNC!~AndrewNC@c-24-128-157-168.hsd1.nh.comcast.net) has quit (Quit: Leaving) | |
[20:19:09] | wagnerrp: | well for now, MNV just uses their flash player anyway |
[20:19:36] | high-rez: | You have to use chrome/html5 for the vp8 content on youtube no ? |
[20:19:46] | wagnerrp: | yes |
[20:19:48] | gbee: | high-rez: I'm wondering whether I should take offence at that dirac comment :) |
[20:20:32] | gbee: | high-rez: no, you don't need chrome |
[20:20:44] | wagnerrp: | well you know, no one else likes british cuisine or codecs |
[20:20:58] | high-rez: | gbee: It was a friendly jab ;) |
[20:21:00] | wagnerrp: | yeah, you just need a browser with html5 and vp8 |
[20:21:07] | wagnerrp: | newer firefox will do it |
[20:21:42] | RockHound (RockHound!~quassel@d013095.adsl.hansenet.de) has joined #mythtv-users | |
[20:21:54] | gbee: | opera, firefox and probably a number of other smaller browsers have built-in VP8 support, even IE will handle it if you manually install the codec |
[20:22:42] | GrahamIRC (GrahamIRC!~GrahamIRC@93-97-162-128.zone5.bethere.co.uk) has joined #mythtv-users | |
[20:22:48] | gbee: | opera supported VP8 from day one, google gave them an early preview |
[20:23:14] | wagnerrp: | are there actually any smaller browsers who developed it on their own? |
[20:23:21] | trumee (trumee!~nobody@cpc5-cmbg14-0-0-cust982.cmbg.cable.virginmedia.com) has joined #mythtv-users | |
[20:23:21] | wagnerrp: | or did they just get it through nsrunner/webkit? |
[20:24:52] | gbee: | I don't know |
[20:27:17] | __benny__: | I got a reproducible crash in MythGame, got a 'core' and gdb stacktrace, anyone interested ? |
[20:27:31] | __benny__: | should I just create ticket ? |
[20:27:44] | wagnerrp: | on 0.23 and/or trunk? |
[20:27:50] | __benny__: | trunk |
[20:27:56] | wagnerrp: | go for it |
[20:27:59] | Beirdo: | sphery: thanks for trying to talk sense into #7672 :) |
[20:29:23] | GuySoft: | And4713, i thought though if a company teams up with the ITU then they have to not file any lawsuit if someone uses their patent (aka give the patent up) |
[20:29:48] | nichos (nichos!~nichos@c-98-231-118-122.hsd1.fl.comcast.net) has joined #mythtv-users | |
[20:30:15] | nichos: | hi all, im having problems with the HVR-2250 it works fine, until i reboot then there are no devices found. Here's the dmesg output: http://pastebin.com/paY020uA |
[20:30:38] | GuySoft: | AndyCap, ^ |
[20:30:38] | nichos: | kernellabs.com is down :( |
[20:32:05] | nichos: | it will run fine for months, it's just when the power goes out |
[20:32:30] | gbee: | they forgot to feed the meter |
[20:33:10] | nichos: | it was towed? |
[20:33:15] | gbee: | or the hamster finally escaped the wheel |
[20:33:29] | Beirdo: | too busy rapping for a Kia commercial |
[20:33:44] | ** nichos is very sick of the 2250 card ** | |
[20:33:52] | ** wagnerrp hates the rapping hamsters ** | |
[20:34:36] | Beirdo: | hehe, I thought it was funny |
[20:34:44] | Beirdo: | lame, but funny |
[20:34:59] | wagnerrp: | lame but painful |
[20:34:59] | ** Beirdo actually used that as one of his nuvexport tests ** | |
[20:35:14] | Beirdo: | that and one of the super-lame Coors Light commercials |
[20:35:20] | gbee: | nichos: probably too specific a joke, in the uk those who repeatedly fail to pay their power bills on time get given a replacement electricity/gas meter which is coin operated, if you forget to maintain a positive balance the power is cut until you put more money in |
[20:35:36] | wagnerrp: | why couldnt they make ads like the geico military psychologist ad... |
[20:35:44] | Beirdo: | haha |
[20:35:54] | wagnerrp: | ... pansy |
[20:35:57] | Beirdo: | that one makes me chuckle too |
[20:36:02] | nichos: | thanks gbee, i wasn't looking for jokes however :/ |
[20:36:21] | high-rez: | gbee: I have a hard time understanding if thats real or a joke but it seems like a good idea. :) |
[20:36:26] | nichos: | anyone want to buy one cheap???? |
[20:37:05] | Beirdo: | high-rez: I think it's real |
[20:37:06] | wagnerrp: | Beirdo: but the PG Ermey just isnt the same... |
[20:37:17] | gbee: | high-rez: real, although it's gone high tech in recent years, with a pre-paid smart card that can be topped up at corner stores etc |
[20:37:44] | nichos (nichos!~nichos@c-98-231-118-122.hsd1.fl.comcast.net) has quit (Quit: is off to reseat his card) | |
[20:37:46] | high-rez: | Wow that would have been totally useful when i was single. |
[20:38:56] | gbee: | some people actually prefer those meters because it lets them keep tighter control over how much they spend |
[20:39:57] | gbee: | wouldn't be much good with MythTV though, come home to find that the meter ran out and nothing was recorded |
[20:40:07] | high-rez: | That would seem like such a weird thing, to meter your electricity and water consumption. |
[20:40:10] | stevieman (stevieman!~robertl@d72-38-49-83.commercial1.cgocable.net) has joined #mythtv-users | |
[20:40:10] | Beirdo: | that plus a big diesel generator... |
[20:40:29] | stevieman: | is the mythtv-moviedb interface still broken? |
[20:41:08] | AndyCap: | GuySoft: looks like they can charge money still judging from 2.2 http://www.itu.int/en/ITU-T/ipr/Pages/policy.aspx |
[20:41:41] | wagnerrp: | what is the 'mythtv-moviedb' interface? |
[20:41:58] | wagnerrp: | you mean the image downloading from themoviedb.org? |
[20:42:03] | wagnerrp: | yes, fixed |
[20:42:12] | stevieman: | actually anything downloading for moviedb |
[20:42:13] | Beirdo: | wow. BDROM drives are getting so cheap! |
[20:42:13] | high-rez: | .. in what release ? |
[20:42:22] | gbee: | high-rez: electricity and gas are not viewed as essential, water is though and although some homes have meters they are purely for recording exactly the amount used, you can't turn off the water supply to a home without court orders |
[20:42:23] | high-rez: | Beirdo: How cheap ? |
[20:42:25] | GuySoft: | AndyCap, :( .. ill ask a friend lawyer when he goes online |
[20:42:31] | Beirdo: | $60 |
[20:42:37] | high-rez: | Nice |
[20:42:45] | __benny__: | so ticket #8789 |
[20:42:51] | trumee is now known as zzztrumee | |
[20:42:53] | high-rez: | Once libbdplus gets made public I'll consider one ;) |
[20:42:54] | stevieman: | when I try I get I get title not found even when I lookup the movie's # on the site |
[20:42:58] | gbee: | Beirdo: yeah, it's great, bought myself one at £40 just a month ago |
[20:42:59] | Beirdo: | that's a Lite-On, may not be the most featureful |
[20:43:02] | wagnerrp: | 'for moviedb'... what is 'moviedb'? |
[20:43:09] | gbee: | high-rez: it's in trunk |
[20:43:11] | GuySoft: | AndyCap, he should also know stuff like ITU policy.. so it would be interesting to hear 'why' |
[20:43:19] | hadees (hadees!~hadees@64.132.24.100) has quit (Quit: hadees) | |
[20:43:23] | Beirdo: | gbee: do they usually double as DVD-RW? |
[20:43:24] | gbee: | oh, bdplus .. yeah, not available yet |
[20:43:29] | high-rez: | gbee: Hmm, I tried to rip a dvd the other day and I didn't get anything... |
[20:43:30] | __benny__: | anyone knows if it's possible to out the text for a QString with gdb ? |
[20:43:59] | stevieman: | I'm running myth .22 I believe |
[20:44:01] | high-rez: | gbee: No i was talking about moviedb stuff with you, the bdplus stuff was pointed at beirdo. You were right hte first time. :) |
[20:44:04] | AndyCap: | GuySoft: but what are you thinking of with regards to the itu? |
[20:44:31] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has quit (Ping timeout: 260 seconds) | |
[20:44:36] | gbee: | Beirdo: some do, the one I got is ROM only, I already have a decent DVD writer so it wasn't worth the extra £15–20 for the models with write capabilities |
[20:44:46] | GuySoft: | AndyCap, because they are the the ones that do the standards for DVB-T |
[20:44:49] | Beirdo: | gotcha |
[20:45:44] | hadees (hadees!~hadees@64.132.24.100) has joined #mythtv-users | |
[20:46:27] | gbee: | high-rez: rip a DVD, or bluray? |
[20:47:07] | gbee: | everything I've so far bought with one exception plays direct from the disc in trunk |
[20:47:10] | high-rez: | gbee: A DVD. E.g. I thought myth would look at some signature on the disk and get all sorts of information like the cover image, rating, etc from some online source ? |
[20:47:15] | AndyCap: | GuySoft: I thought that was a separate group? |
[20:47:22] | wagnerrp: | did the image downloader in 0.22 ever get fixed? |
[20:47:27] | gbee: | high-rez: no, has never done that |
[20:47:40] | high-rez: | Oh, so I'm totally off base then |
[20:47:40] | high-rez: | :) |
[20:47:56] | GuySoft: | AndyCap, who would it be then? |
[20:48:13] | gbee: | 0.22? probably not, I backported part of the fix but afaik the rest wasn't backported at all |
[20:48:35] | Defense|Twin (Defense|Twin!~jepz@f054003137.adsl.alicedsl.de) has quit (Remote host closed the connection) | |
[20:49:09] | stevieman: | So should I just bite the bullet and move to .23? |
[20:49:13] | rossand (rossand!~aross@CPE485b390978ce-CM00222ddf42dd.cpe.net.cable.rogers.com) has quit (Quit: Leaving.) | |
[20:49:24] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[20:49:29] | high-rez: | Yes |
[20:49:49] | high-rez: | For supported vdpau support alone. |
[20:50:06] | stevieman: | I'm running mythbuntu and the last time I tried an update it killed everything |
[20:50:12] | stevieman: | I was non to happy |
[20:50:45] | high-rez: | That'll probably happen again. But on the bright side its just tv. |
[20:50:49] | gbee: | we rarely backport fixes to previous releases |
[20:51:43] | stevieman: | Try to explain that to a 3 and a half year old who wants to watch Thomas or Backyadigans |
[20:51:46] | stevieman: | :) |
[20:52:14] | high-rez: | Just shake em to he quiets down . |
[20:52:19] | high-rez: | s/to/till |
[20:52:30] | ** high-rez ducks ** | |
[20:52:45] | Beirdo: | nah. rum. |
[20:52:56] | stevieman: | hmmm I didn't even notice the typo, my brain changed to to till automatically |
[20:53:00] | AndyCap: | GuySoft: these people? http://dvb.org/about_dvb/ |
[20:53:30] | stevieman: | rum till he quiets down? or rum until I don't care anymore? |
[20:53:33] | high-rez: | Clearly you've shaken the kid before (thats what it means) |
[20:53:51] | AndyCap: | GuySoft: standardisation seems to go through cenelec or etsi |
[20:54:05] | GuySoft: | ETSI ןם עוקדד |
[20:54:09] | GuySoft: | i guess& |
[20:54:11] | Beirdo: | stevieman: whatever works for ya. Just don't send Child Services over here |
[20:54:48] | stevieman: | Beirdo: Deal! I don't send them over there and you don't send them over here :) |
[20:55:07] | ** Beirdo chucks stevieman a bottle of rum ** | |
[20:55:14] | ** AndyCap goes to call Child Services ** | |
[20:55:21] | AndyCap: | :P |
[20:56:36] | GuySoft: | AndyCap, oh well, they are friends though on the GSC.. :-/ |
[20:56:45] | high-rez: | This talk of rum is making me think of butter rum |
[20:56:55] | high-rez: | I am pavlov's dog. |
[20:57:16] | gbee: | high-rez: fetch me a beer |
[20:58:06] | high-rez: | gbee: Sure, but I'll only grab you a crap american beer. Like Bud Light. |
[20:58:29] | __benny__: | someone said beer :D |
[20:59:11] | zzztrumee is now known as trumee | |
[20:59:16] | gbee: | high-rez: yeah, ok don't bother then ;) |
[20:59:57] | stevieman: | if I switch to .23 is auto-transcode going to work? |
[21:00:22] | rushfan (rushfan!~rushfan@c-71-232-0-154.hsd1.ma.comcast.net) has joined #mythtv-users | |
[21:00:29] | bjd: | ooo, where's 8 ball? |
[21:00:40] | dmz (dmz!~dmz@64.203.207.101.dyn-cm-pool-54.hargray.net) has quit (Ping timeout: 240 seconds) | |
[21:00:49] | high-rez: | bjd: Tony Montana has all of those. |
[21:02:01] | sphery: | Beirdo: heh, yeah, so to me it sounds like it shouldn't work, and he has a FRWOP (support collection of EIT data from one video source for populating multiple video sources) |
[21:03:04] | Beirdo: | on further explanation, it does seem that way, does it not? |
[21:03:37] | Beirdo: | it's a feature request that should get added to the pile as a potentially useful one though |
[21:03:44] | stevieman (stevieman!~robertl@d72-38-49-83.commercial1.cgocable.net) has quit (Quit: Leaving) | |
[21:03:47] | Beirdo: | but it does seem he has NOT found a bug :) |
[21:03:51] | dmz (dmz!~dmz@64.203.207.101.dyn-cm-pool-54.hargray.net) has joined #mythtv-users | |
[21:04:44] | sphery: | I'm now asking for clarification. We'll see what the next reply says. :) |
[21:06:18] | sphery: | yeah, and note that none of our guide data mechanisms (XMLTV, SD, EIT) allow use of data on multiple video sources--so it would be a very large change to allow it. IMHO, though, use of the listings sources, themselves, is the right solution |
[21:06:18] | Beirdo: | yup, so I see |
[21:06:45] | sphery: | I.e. for the "support collection of EIT data from one video source for populating multiple video sources" FRWOP, he could simply use the XMLTV DVB EIT grabber to make XMLTV files |
[21:06:51] | sphery: | tv_grab_dvb or something |
[21:07:10] | Beirdo: | cool |
[21:07:20] | gbee (gbee!~gbee@cpc2-derb9-0-0-cust259.derb.cable.virginmedia.com) has left #mythtv-users ("Gone") | |
[21:07:26] | Beirdo: | sometimes I don't like being in a DVB-challenged area |
[21:07:31] | sphery: | I'm not sure how you integrate that, but some users have done it |
[21:07:44] | wagnerrp: | Beirdo: but, you can pick up DVB-S2 right now! |
[21:08:07] | high-rez: | Beirdo: I have no problem making DVB work on my toroidal T90 :) |
[21:08:34] | Beirdo: | blah blah blah |
[21:08:51] | Beirdo: | no availability of a dish... no DVB-S* |
[21:08:53] | sphery: | wagnerrp: who's using DVB-S2 here? Just DISH, right? |
[21:09:11] | high-rez: | DISH doesn't use DVB-S2. Just a couple of network feeds do. |
[21:09:31] | wagnerrp: | oh? i thought thats what the softcammers were picking up |
[21:09:32] | Beirdo: | DirecTV is rumored to be considering -S2 |
[21:09:40] | RockHound (RockHound!~quassel@d013095.adsl.hansenet.de) has quit (Ping timeout: 240 seconds) | |
[21:09:41] | sphery: | oh, do I have things backwards? |
[21:09:44] | Beirdo: | !trout wagnerrp |
[21:09:44] | ** MythLogBot slaps wagnerrp with a trout on behalf of Beirdo... ** | |
[21:09:50] | bjd: | DVB-T2 cards would be nice :) |
[21:10:01] | Beirdo: | I'd love to have DAB |
[21:10:05] | wagnerrp: | i didnt think T2 was a finalized spec yet |
[21:10:06] | sphery: | they're listed as using it experimentally in wikipedia http://en.wikipedia.org/wiki/DVB-S2#The_DVB-S . . . rade_process |
[21:10:06] | high-rez: | wagnerrp: They have a proprietary system thats similar to S2 (8PSK) but different FEC. |
[21:10:10] | trumee (trumee!~nobody@cpc5-cmbg14-0-0-cust982.cmbg.cable.virginmedia.com) has quit (Remote host closed the connection) | |
[21:10:16] | AndyCap: | Beirdo: heh, people here are really hating on DAB. |
[21:10:20] | sphery: | Beirdo: everything I've heard about DAB says it's dying out overseas |
[21:10:24] | sphery: | yeah, and people hate it |
[21:10:26] | bjd: | wagnerrp, my TV has DVB-T2 built in |
[21:10:27] | Beirdo: | whay? |
[21:10:38] | Beirdo: | why would you hate digital radio? :) |
[21:10:40] | AndyCap: | I wouldn't mind DAB though. even got a pci card for it |
[21:10:50] | AndyCap: | Beirdo: mpeg-1 layer 2. |
[21:10:56] | Beirdo: | so? |
[21:11:01] | Beirdo: | better than FM and AM :) |
[21:11:10] | bjd: | DAB? you're all weird ;) |
[21:11:11] | AndyCap: | Beirdo: so people don't like it because it sounds different. |
[21:11:19] | Beirdo: | ah |
[21:11:33] | AndyCap: | or the broadcasters got greedy and packed too many channels in |
[21:11:36] | Beirdo: | well, maybe the *implementation* sucks :) |
[21:11:39] | sphery: | Beirdo: but, hey, we re-invented digital radio with HD Radio! |
[21:11:46] | Beirdo: | of course |
[21:11:48] | sphery: | after all, NIH is king in the US |
[21:11:53] | AndyCap: | it would be nice with DAB recievers using aac or something |
[21:12:01] | sphery: | (and, no, not the National Institutes of Health :) |
[21:12:11] | AndyCap: | ah, the national institute of not invented here |
[21:12:17] | AndyCap: | or the knights who say NIH |
[21:12:17] | sphery: | exactly--that's the one |
[21:12:22] | sphery: | heh |
[21:12:23] | Beirdo: | the US institute of NIH |
[21:12:32] | high-rez: | I think the whole NIH thing with the US is a littler overblown. |
[21:12:37] | high-rez: | s/littler/little |
[21:13:00] | Beirdo: | NIH! |
[21:13:04] | high-rez: | I think the biggest argument of that (GSM) is totally bogus |
[21:13:05] | sphery: | well, ATSC turned out to be a just-modified-enough-to-require-all-new-equipment DVB, so... |
[21:13:21] | Beirdo: | anyways, I should dig out an FM tuner.... |
[21:13:23] | high-rez: | Ok, I'll give you ATSC. :) |
[21:13:35] | Beirdo: | ATSC = DVB-T-US |
[21:13:38] | sphery: | heh |
[21:14:16] | AndyCap: | you people really need to lose the frequency = program id. :P |
[21:14:20] | wagnerrp: | 128kbps mp2? eew... |
[21:14:27] | Beirdo: | hehe |
[21:14:28] | sphery: | I'll agree that GSM was more a problem of "let the market sort it out" than NIH |
[21:14:40] | Beirdo: | OK, I want FM tuner in my mythbox |
[21:14:47] | Beirdo: | now look what you made me do |
[21:14:52] | sphery: | heh |
[21:15:01] | Beirdo: | wonder where that old POS framegrabber went? |
[21:15:05] | wagnerrp: | i want an fm tuner in my phone |
[21:15:08] | AndyCap: | was an interesting radio chip in elektor recently. :P |
[21:15:09] | wagnerrp: | no, i demand it |
[21:15:12] | Beirdo: | pretty sure it had an FM tuner too |
[21:15:16] | wagnerrp: | and i demand there's one in your phone too |
[21:15:22] | Beirdo: | hahah |
[21:15:22] | AndyCap: | ooh, what was so hot. my phone has an RDS transmitter. :P |
[21:15:27] | high-rez: | sphery: It was more of a problem that we had already standardized on a band (850) and the europeans adopted a band that could /never/ be used (900) by the US because unlicensed devices (e.g. ISM devices) were already on that band. |
[21:15:49] | Beirdo: | high-rez: I think you have the chronology backwards there |
[21:15:52] | wagnerrp: | and in my pda, and my gps receiver, and my... |
[21:16:05] | Beirdo: | GSM being invented in Europe :) |
[21:16:17] | high-rez: | Beirdo: No, I don't. AMPS came way before GSM. |
[21:16:34] | wagnerrp: | ive got an AMPS phone |
[21:16:58] | Beirdo: | yeah, and GSM was chosen by lazy carriers to reuse AMPS bandwidth here AFTER Europe chose a different band, no? |
[21:17:04] | Beirdo: | not to mention 1800 vs 1900 |
[21:17:15] | sphery: | high-rez: yeah, but the only changes were the frequency differences between US and global, right? Whereas the GSM vs CDMA was a complete lack of standardization of a national infrastructure. |
[21:17:34] | wagnerrp: | big ol' thing, about the size of two bricks |
[21:17:35] | sphery: | (and maybe power levels--but still, used the same overall standard) |
[21:17:42] | Typosu (Typosu!~moose@S010600195b863efb.ed.shawcable.net) has joined #mythtv-users | |
[21:17:58] | ** Beirdo likes his GSM phones ** | |
[21:18:16] | sphery: | heh: http://mythtv.org/pipermail/mythtv-users/2010-August/295124.html |
[21:18:26] | wagnerrp: | cant replace it, they dont sell digital units that hook into my car's data bus |
[21:18:34] | Beirdo: | hahah |
[21:18:38] | wagnerrp: | cant use it, since no one provides AMPS service |
[21:18:39] | sphery: | Beirdo: Me, too. I've always been on GSM services since my first cell phone. |
[21:18:42] | ** Beirdo points at a newer car ** | |
[21:18:54] | Beirdo: | I had some CDMA hell for a while |
[21:18:54] | wagnerrp: | its not /that/ old, bought it in 2003 |
[21:18:59] | Beirdo: | but GSM++ |
[21:19:30] | Beirdo: | I really like my 8890 still |
[21:19:34] | high-rez: | sphery: I see it more like two different paths of development. AMPS, D-AMPS (aka TDMA), CDMA in the US... The europeans jumped right to GSM, but it can be argued that CDMA was actually more advanced than GSM (which is actually TDMA – GPRS, EDGE, UMTS, HS*PA being something completely different – and the latter being based on CDMA principals) |
[21:19:37] | Beirdo: | never use it anymore. |
[21:19:38] | sphery: | yeah, my 8290 was great |
[21:19:54] | Beirdo: | now I am a bandwidth hog of the second degree |
[21:20:01] | Beirdo: | first degree being iPhone4 |
[21:20:09] | Beirdo: | second degree being iPhone < 4 |
[21:20:10] | Beirdo: | :) |
[21:20:26] | sphery: | high-rez: yeah, that is the one saving grace--the LTE is forcing standardization, finally |
[21:20:29] | high-rez: | wagnerrp: It was available upto a few years ago. I remember it being finally turned off. :) |
[21:20:37] | wagnerrp: | apparently the android users consume far more than the average iphone user |
[21:20:51] | Beirdo: | high-rez: did you get to use a trebuchet to dispose of the old AMPS gear/ :) |
[21:21:10] | sphery: | wagnerrp: that's because of those apps sending GPS coords for GPS Spy to make available to stalkers |
[21:21:13] | Beirdo: | that's how I wanna dispose of old crap |
[21:21:15] | high-rez: | sphery: Well, I think that once US carriers (the smart ones) adopted GSM technologies, standardization already was at hand. It was just a matter of having radios that could run on 4+ bands.. |
[21:21:30] | wagnerrp: | high-rez: yeah, around the time it got turned off, i ripped it out, and considered replacing it with a computer |
[21:21:31] | sphery: | heh, yeah |
[21:21:42] | wagnerrp: | only to give up when i discovered the audio was only mono |
[21:21:52] | high-rez: | LTE is fun stuff though. |
[21:22:08] | sphery: | high-rez: fortunately, though, this was one case where politicians couldn't prevent sanity |
[21:22:21] | high-rez: | It's a complete deviation from what was being done before (LTE). |
[21:22:28] | sphery: | (i.e. those who were trying to push CDMA on other parts of the world that the US was "rebuilding") |
[21:22:42] | Beirdo: | Oh, you mean Iraq? |
[21:22:45] | AndyCap: | I wouldn't mind 802.11 on 850 or 900 being allowed in europe though |
[21:22:46] | sphery: | yeah |
[21:22:46] | high-rez: | sphery: Yeah well thats qualcomm for you. |
[21:22:48] | Beirdo: | flatten the GSM network. |
[21:23:01] | Beirdo: | give contract to friends.. |
[21:23:03] | Beirdo: | oh wait |
[21:23:37] | high-rez: | andycap: You'd mind it right up till the point you couldn't make calls on that fancy n900 ;) |
[21:24:13] | Beirdo: | mmm, toys |
[21:24:45] | AndyCap: | high-rez: I don't see why that would be a problem, considering the US has 802.11 on 900 |
[21:25:00] | Beirdo: | ?! |
[21:25:00] | high-rez: | What's really interesting about LTE is that its pretty much dominated every network. Those who didn't jump to LTE didn't do so only to have a marketing advantage... |
[21:25:11] | Beirdo: | 802.11 in the US is on 2.4GHz |
[21:25:15] | high-rez: | AndyCap: But the US doesn't have any cell phone networks from 902–928mhz... |
[21:25:18] | Beirdo: | and 5.0GHz |
[21:25:31] | Beirdo: | which one's around 900MHz? |
[21:25:32] | wagnerrp: | and 3.7, and 5.2–5.8 |
[21:25:38] | high-rez: | Beirdo: You can get wireless gear in 900, 2.4 and 5.8 |
[21:25:55] | Beirdo: | b/g is 2.4 |
[21:25:56] | wagnerrp: | the real long range stuff operates at 900 and 3.7 |
[21:26:01] | sphery: | was a using 900? |
[21:26:01] | AndyCap: | high-rez: which is why I said 850 or 900, |
[21:26:02] | eNeRGi (eNeRGi!~nrgizer@cs78235252.pp.htv.fi) has quit (Ping timeout: 248 seconds) | |
[21:26:16] | Beirdo: | meh, whatever, all the bands are hosed anyways |
[21:26:16] | AndyCap: | http://www.ubnt.com/sr9 |
[21:26:30] | sphery: | guess a was 5GHz |
[21:26:32] | AndyCap: | 28 Mhz of ISM band |
[21:26:37] | wagnerrp: | the 5.x band is still pretty clean |
[21:26:41] | wagnerrp: | and theres a crapton of it |
[21:26:44] | sphery: | Some earlier WLAN technologies used lower frequencies, such as the U.S. 900 MHz ISM band. |
[21:26:54] | sphery: | from: http://en.wikipedia.org/wiki/IEEE_802.11 |
[21:27:31] | Beirdo: | right, but no 802.11 on 900MHz :) |
[21:27:32] | wagnerrp: | theres like 20 non-overlapping 5GHz bands |
[21:27:36] | Beirdo: | just other crap |
[21:27:40] | wagnerrp: | instead of 3 in the 2.4GHz band |
[21:30:07] | Beirdo: | anywho... meeting time |
[21:30:17] | sphery: | Yeah, I liked wifi a /lot/ better before the different routers/APs started configuring different default channels. When they were all set to 11MHz, it was easy for me to find a good non-overlapping channel to use, regardless of what equipment my neighbors (who generally don't know how to change it) got. |
[21:30:29] | sphery: | s/11MHz/channel 11) |
[21:30:49] | wagnerrp: | and when you see people using channel 4, you just feel the sudden urge to stab them |
[21:31:33] | sphery: | heh, yeah |
[21:37:41] | high-rez: | sphery: The solution is to just have a bunch of 802.11 APs an pollute the entire spectrum :) |
[21:39:53] | dashcloud (dashcloud!~quassel@pool-173-59-40-212.phlapa.fios.verizon.net) has joined #mythtv-users | |
[21:41:24] | hadees (hadees!~hadees@64.132.24.100) has quit (Quit: hadees) | |
[21:43:32] | hadees (hadees!~hadees@64.132.24.100) has joined #mythtv-users | |
[21:46:41] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has quit (Read error: Connection reset by peer) | |
[21:46:46] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[21:47:28] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has joined #mythtv-users | |
[21:50:46] | henrik_ (henrik_!~henrik@129.207.95.91.static.ter-blg.siw.siwnet.net) has joined #mythtv-users | |
[21:50:56] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 265 seconds) | |
[21:51:13] | lyricnz (lyricnz!~simonrobe@ppp118-209-176-251.lns20.mel6.internode.on.net) has quit (Ping timeout: 276 seconds) | |
[21:51:34] | henrik_: | Is there anyway to have mythfrontend ignore protocol version missmatch? I'm on a svn version of backend with the protocol problem and a fedora frontened |
[21:51:40] | wagnerrp: | no |
[21:51:46] | wagnerrp: | nor should you ever want to |
[21:52:08] | henrik_: | well the backend requires a version i can not have on frontend |
[21:52:14] | henrik_: | so I can not use the frontend as it is.. |
[21:52:15] | wagnerrp: | then you screwed up |
[21:52:20] | [R]: | henrik_: hack the code... then again... when it explodes... you get to keep all the peices |
[21:52:48] | henrik_: | wagnerrp, I use mythbuntu on backend |
[21:52:55] | henrik_: | and fedora11 on frontend |
[21:53:02] | henrik_: | the backend is on fixes |
[21:53:02] | wagnerrp: | thats fine |
[21:53:08] | wagnerrp: | you updated one, and didnt update the other |
[21:53:10] | wagnerrp: | thats youre fault |
[21:53:27] | henrik_: | well fedora does not offer svn updates |
[21:53:44] | wagnerrp: | do they offer new releases? |
[21:53:45] | [R]: | pretty sure theres a repo with fixes |
[21:53:50] | wagnerrp: | you are running 0.23.1 on your backend |
[21:53:54] | wagnerrp: | and 0.23.0 on your frontend |
[21:53:56] | henrik_: | it has been working flawless from .20 |
[21:54:14] | henrik_: | yes |
[21:54:15] | wagnerrp: | either find your database backup, and revert to 0.23.0, or upgrade your frontend to 0.23.1 |
[21:54:40] | tgm4883: | henrik_, you will be able to revert to the last version of 0.23.0 probably tonight |
[21:54:43] | henrik_: | so there are some yum package for 0.23.1 out there |
[21:54:54] | tgm4883: | for mythbuntu that is |
[21:55:15] | wagnerrp: | right.. no database changes, so you can just revert the code |
[21:55:30] | henrik_: | tgm4883, why are you making a revert? |
[21:55:38] | henrik_: | is there a problem with 0.23.1 |
[21:55:45] | wagnerrp: | henrik_: yes, its not compatible with 0.23.0 |
[21:55:47] | tgm4883: | henrik_, because 0.23.0 doesn't have the protocol change |
[21:55:53] | tgm4883: | and 0.23.1 does |
[21:56:08] | tgm4883: | and the protocol change made it into 0.23.0 on our repos |
[21:56:08] | wagnerrp: | its an optional revert for people who didnt intentionally update their packages, and dont want to have to update all their systems |
[21:56:29] | wagnerrp: | we screwed up on our end, and let a protocol change go through without tagging a new release |
[21:56:33] | tgm4883: | wagnerrp, it will actually come across as an upgrade |
[21:56:54] | wagnerrp: | but it was fixed within a few days |
[21:57:34] | henrik_: | thanks but does anyone know where I can find the 0.23.1 yum package for f11? |
[21:57:41] | tgm4883: | not I |
[21:59:02] | wagnerrp: | might want to see j-rod about that |
[21:59:13] | wagnerrp: | !seen j-rod |
[21:59:13] | MythLogBot: | j-rod was last seen 3 days 1 hour 38 minutes 48 seconds ago |
[22:00:10] | [R]: | is that like a-rod? |
[22:00:13] | [R]: | but cooler...? |
[22:00:15] | henrik_: | okej.. thx for trying.. that could be a solution, just update the frontend to the right version and all should be fine |
[22:00:35] | wagnerrp: | if nothing else, you can always build your own |
[22:00:48] | henrik_: | yea I thaught of that to.. |
[22:00:56] | henrik_: | and looked at a howto... |
[22:00:59] | henrik_: | but it |
[22:01:10] | hadees (hadees!~hadees@64.132.24.100) has quit (Quit: hadees) | |
[22:01:24] | henrik_: | out of my league... I can promis you I will mess out pulse audio etc |
[22:01:26] | wagnerrp: | no need for a howto, just takes a standard './configure; make; make install' |
[22:01:40] | wagnerrp: | do you have pulseaudio installed? |
[22:01:53] | henrik_: | well I think I have removed it.. |
[22:01:57] | henrik_: | in favour for alsa |
[22:02:17] | wagnerrp: | if you have the headers, mythtv will build with support for disabling pulseaudio automatically |
[22:02:18] | henrik_: | pulse is the standard and it will problebly come back |
[22:02:48] | henrik_: | and the headers is something I will get together with the package right svn? |
[22:03:05] | wagnerrp: | the headers are pulse's include headers |
[22:03:21] | wagnerrp: | you may have to install a bunch of dev packages in order to get various headers before you can build mythtv |
[22:03:32] | henrik_: | okej.. |
[22:03:39] | henrik_: | so some howto is to prefere ;) |
[22:04:26] | henrik_: | that is why I like yum packages. cause then some realy nice sole who knows what he/she is doing fixed thouse problems ;) |
[22:05:26] | wagnerrp: | probably j-rod |
[22:06:55] | henrik_: | I will w8 for him then :) |
[22:07:26] | henrik_: | thanks for the help. that fronend has not been working for weeks so I'm not in a hurry |
[22:08:10] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Ping timeout: 248 seconds) | |
[22:12:29] | hadees (hadees!~hadees@72-48-211-19.dyn.grandenetworks.net) has joined #mythtv-users | |
[22:19:22] | waxhead_ (waxhead_!~pete@ppp121-45-217-60.lns20.cbr1.internode.on.net) has joined #mythtv-users | |
[22:23:12] | cdpuk (cdpuk!~chris@91.84.144.76) has quit (Remote host closed the connection) | |
[22:23:46] | pheld (pheld!rplbwy@109-109-76-195.bb.cust.telefiber.no) has joined #mythtv-users | |
[22:29:32] | inordkuo (inordkuo!~inorkuo@nsc64.16.142-198.newsouth.net) has quit (Quit: Leaving.) | |
[22:35:35] | pheld (pheld!rplbwy@109-109-76-195.bb.cust.telefiber.no) has quit (Quit: Leaving.) | |
[22:36:37] | Twiggy2cents (Twiggy2cents!~Twiggy@12.182.96.2) has quit (Ping timeout: 240 seconds) | |
[22:39:36] | pizzledizzle (pizzledizzle!~pizdets@pool-96-250-215-244.nycmny.fios.verizon.net) has joined #mythtv-users | |
[22:44:21] | RyeBrye (RyeBrye!~ryebrye@67.199.188.189) has joined #mythtv-users | |
[22:51:19] | Beirdo: | UPS, don't you fail me! |
[22:51:31] | Beirdo: | my second TV is supposed to be there today |
[22:51:53] | Beirdo: | UPS tracking has not been updated since Sunday... nice tracking, dolts |
[22:52:24] | Beirdo: | and it was last seen in Long Beach, CA. Got a ways to get to Seattle, WA from there |
[22:52:45] | [R]: | only 2nd? |
[22:53:19] | Beirdo: | I have a 2BR apt. |
[22:53:22] | Beirdo: | for one person |
[22:53:36] | [R]: | so you should have atlest 4 tvs |
[22:53:38] | Beirdo: | when I'm done, I'll likely have 4 TVs |
[22:53:45] | sebrock (sebrock!~sebastian@hd5b90669.selukra.dyn.perspektivbredband.net) has quit (Quit: Leaving) | |
[22:53:49] | [R]: | well get crackin |
[22:53:50] | [R]: | :) |
[22:53:57] | Beirdo: | I am. |
[22:54:01] | Beirdo: | getting #2 :) |
[22:54:08] | Beirdo: | it's going in the bedroom. |
[22:54:18] | [R]: | bedrom aka love shack |
[22:54:20] | Beirdo: | and does netflix streaming |
[22:54:22] | [R]: | bedroom* |
[22:54:30] | [R]: | i want a tv that has the wifis |
[22:54:33] | [R]: | or the ethernets |
[22:54:46] | [R]: | but only like 30" and cheap |
[22:54:57] | RobertLaptop (RobertLaptop!~RobertLap@63.68.135.4) has quit (Quit: Leaving) | |
[22:55:01] | Beirdo: | this one has ethernet, and you can apparently put a wifi dongle... meh |
[22:55:24] | Beirdo: | it's 22" Vizio, BTW. The living room has 32" Samsung, also ethernet |
[22:55:42] | Beirdo: | the other BR will be my office... eventually |
[22:55:51] | [R]: | 22 vizio has the ethernets? |
[22:55:52] | Beirdo: | and will need a TV for my fix there :) |
[22:55:54] | [R]: | from where? |
[22:56:19] | Beirdo: | http://www.amazon.com/gp/product/B003DV71DW/ |
[22:56:20] | [R]: | and what can you do with a 22" tv... besides a lot of quinting |
[22:56:22] | [R]: | squiting* |
[22:56:25] | [R]: | squinting* |
[22:56:28] | Beirdo: | watch TV |
[22:56:30] | [R]: | haha |
[22:56:35] | Beirdo: | my eyesight ain't that bad |
[22:57:15] | Beirdo: | and will mean I FINALLY test the vaapi stuff I keep putting off |
[22:57:24] | Beirdo: | as my fit-pc will be my frontend |
[22:57:40] | [R]: | does vaapi provide full h264? |
[22:57:44] | Beirdo: | oh bah, I shoulda bought a hard drive for it too. |
[22:57:52] | Beirdo: | depends on the chip |
[22:58:21] | Beirdo: | AFAIK, the GMA500 (which is crappy, but is in my test box) does H.264 and MPEG-2 |
[22:58:39] | Beirdo: | and maybe something else, which I likely don't care much about |
[23:00:00] | Beirdo: | stupid UPS |
[23:00:04] | janneg: | vc1 probably, maybe mpeg4 asp (aka xvid) |
[23:00:06] | [R]: | Beirdo: does it do upnp? |
[23:00:13] | Beirdo: | dunno, but I'll find out |
[23:00:19] | Beirdo: | VC1, I think, yeah |
[23:00:25] | [R]: | i'm reading their site |
[23:00:45] | Beirdo: | as my recordings are either H.264 (majority of em) or MPEG-2, those are the two I care about |
[23:01:18] | Beirdo: | the netflix streaming really was the selling point for that TV for me |
[23:01:22] | Beirdo: | and 1080p :) |
[23:02:27] | itscrimetime (itscrimetime!~yo@c-68-44-200-73.hsd1.pa.comcast.net) has joined #mythtv-users | |
[23:03:22] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[23:03:29] | Beirdo: | dear UPS... where the BLEEP is my new TV? |
[23:04:00] | Beirdo: | I'll likely (eventually) put some small flatscreen in the kitchen as my 4th |
[23:04:14] | Beirdo: | touchscreen would be sweet |
[23:04:17] | Beirdo: | recipes, etc |
[23:05:03] | [R]: | you could probably call them |
[23:05:21] | Beirdo: | call? What's that? |
[23:05:25] | Beirdo: | hheeh |
[23:05:29] | Beirdo: | I hate using the phone :) |
[23:06:14] | [R]: | this makes me so sad |
[23:06:17] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds) | |
[23:06:20] | [R]: | 42" vizio with the internets |
[23:06:26] | [R]: | cheaper than my 42" i got 3 years ago |
[23:06:32] | Beirdo: | ha ha! |
[23:06:38] | ** Beirdo channels Nelson ** | |
[23:06:51] | [R]: | ? |
[23:07:10] | Beirdo: | !trout [R] Simpsons |
[23:07:10] | ** MythLogBot slaps [R] with a Simpsons trout on behalf of Beirdo... ** | |
[23:07:54] | [R]: | oh |
[23:08:03] | Beirdo: | http://www.amazon.com/ASUS-ETP1602C-BK-X0163- . . . /B002VY8OS8/ |
[23:08:18] | Beirdo: | that would be almost cool... if it were a much smaller screen |
[23:08:28] | [R]: | yes, but does it support linux? |
[23:08:39] | Beirdo: | N270 Atom |
[23:08:43] | Beirdo: | don't see why not |
[23:08:56] | [R]: | $700 for a 32" |
[23:08:58] | [R]: | thats too much |
[23:09:03] | Beirdo: | the *touch* part might not right up front though |
[23:09:13] | [R]: | thats what i meant |
[23:09:36] | Beirdo: | still. too big for a kitchen counter install, really |
[23:10:09] | Beirdo: | i945 onboard video |
[23:11:03] | Beirdo: | OK, that's better. |
[23:11:19] | Beirdo: | my desktop box was starting to mak funky fan noises |
[23:11:27] | Beirdo: | so I punched it... all quiet |
[23:12:26] | Beirdo: | who says violence doesn't solve anything? |
[23:13:52] | Beirdo: | oh, nice work, Dell. |
[23:13:58] | Beirdo: | no supported sensors at all |
[23:13:59] | skd5aner: | what does #7252 "do"? |
[23:14:17] | winslow (winslow!~chatzilla@c-98-240-124-11.hsd1.tn.comcast.net) has quit (Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716]) | |
[23:14:36] | skd5aner: | I mean, from an end user's perspective – anything noticable/mentionable? Any benefits or items it resolves/fixes? |
[23:14:39] | ND-movie (ND-movie!~jerrad@pcp126333pcs.unl.edu) has joined #mythtv-users | |
[23:14:50] | Beirdo: | skd5aner: ask elmojo in the other channel |
[23:15:15] | Beirdo: | I'm not sure the precise meaning either :) |
[23:15:34] | skd5aner: | np, thx :) |
[23:19:45] | Beirdo: | hmmm, 7" touch screen USB powered LCD. |
[23:19:48] | Beirdo: | tempting |
[23:20:24] | skd5aner: | Beirdo: while you're here, mind if I ask a Q about 25657/#6824? |
[23:20:32] | skd5aner: | comm detections speedups... |
[23:20:45] | Beirdo: | sure thing |
[23:20:55] | Beirdo: | fun times :) |
[23:21:19] | skd5aner: | I know on certain networks with tickers, ESPN for example, the ticker survives the entire time show and commercial, so many times commercials aren't detected traditionally |
[23:21:32] | skd5aner: | can that help with scenarios like that if it's not looking at the bottom of the screen? |
[23:22:15] | Beirdo: | doubtful. The net result is: for most methods, it uses lower resolution to commflag in. |
[23:22:27] | Beirdo: | in particular, 1/4 width, 1/4 height |
[23:22:38] | skd5aner: | yea, that's the part I was wondering about... |
[23:22:46] | [R]: | why 1/4? |
[23:22:57] | [R]: | why not 1/10? |
[23:23:00] | Beirdo: | for blank frame detection (IIRC), it uses the middle of the screen only (ignores the top 1/4, bottom 1/4 |
[23:23:09] | Beirdo: | 1/4 is much much faster? |
[23:23:18] | Beirdo: | well, I didn't time that |
[23:23:23] | [R]: | faster than 1/10? |
[23:23:33] | Beirdo: | but powers of 2 would be significantly faster for most algorithms |
[23:23:47] | [R]: | ok... then 1/16 |
[23:23:50] | Beirdo: | heh |
[23:23:57] | [R]: | i can do my powers of 2... muhaha |
[23:24:07] | Beirdo: | well, this is how danielk made the patch, and it seems to work |
[23:24:10] | Slim-Kimbo (Slim-Kimbo!~Kimbo@86.134.132.41) has quit (Quit: Slim-Kimbo) | |
[23:24:25] | Beirdo: | it can be tweaked by the interested user :) |
[23:24:28] | skd5aner: | but, how does it scale it down? wouldn't that take ammount of processing to scale down? Or is it easier to scale down, then analyze than simply analyzing a full scale HD high-bitrate stream? |
[23:24:39] | Beirdo: | the latter |
[23:25:00] | Beirdo: | it's 50%+ faster in my testing |
[23:25:03] | skd5aner: | in other words, the scaling itself is less compute intense than simply not doing that extra step |
[23:25:21] | skd5aner: | More is less, in this instance ;) |
[23:25:34] | Beirdo: | yeah, detection over 1/16 of the pixels is more of a savings than the scaling |
[23:25:45] | skd5aner: | interesting concept – your idea? |
[23:25:52] | Beirdo: | now, it's possible that it could get tweaked more |
[23:25:57] | Beirdo: | nope, danielk's |
[23:26:10] | Beirdo: | I just shepherded it into being committed and tested it |
[23:26:12] | skd5aner: | well, good work you 2 |
[23:26:33] | Beirdo: | and I'll probably mess with it more after 0.24 for my own uses :) |
[23:26:46] | Beirdo: | I may even try 1/16 width, 1/16 height |
[23:26:47] | Beirdo: | heh |
[23:26:56] | [R]: | dare i suggest... |
[23:26:56] | skd5aner: | I misinterpreted it as not necessarily scaling down to 1/4 size, but only using 1/4 of the screen |
[23:26:57] | [R]: | 1/32? |
[23:27:02] | ** [R] laughs manically ** | |
[23:27:03] | Beirdo: | but I'm worried it would lose too much |
[23:27:21] | LedHed (LedHed!~LedHed@static-74-45-162-66.dr01.pasn.ca.frontiernet.net) has quit (Quit: Leaving) | |
[23:28:25] | Beirdo: | you can see in the call to sws_scale where it's rescaling the frame before we use it |
[23:28:43] | Beirdo: | avformatdecoder.cpp:2966 in the patch |
[23:28:44] | [R]: | i really hate when the comm flagger goes too far |
[23:28:50] | [R]: | cuz then i have to actually move my arm |
[23:28:53] | [R]: | and skip back |
[23:29:21] | Beirdo: | I've found (so far) that this works as well if not better than without |
[23:29:31] | [R]: | well tahts good |
[23:29:35] | Beirdo: | there was one case where it left a local commercial in |
[23:29:42] | Beirdo: | but it left the WHOLE thing :) |
[23:29:47] | [R]: | i've seen that a bunch with the curret one |
[23:29:51] | Beirdo: | and all the other marks were spot on |
[23:29:57] | Beirdo: | so I think it's doing just fine |
[23:30:15] | Beirdo: | it's all not an exact science, etc |
[23:30:34] | [R]: | yeah, freakin tv stations |
[23:31:00] | Beirdo: | they keep trying to make it hard for us to ignore their ads.... jerks :) |
[23:32:33] | skd5aner: | Beirdo: did you have any finicky recordings where the traditional commflag didn't work so well and you were able to show otherwise after the change? |
[23:32:42] | Beirdo: | not yet |
[23:32:50] | Beirdo: | I was suggested to try with Intervention |
[23:33:06] | Beirdo: | I have a couple recordings to test with, but haven't had the time to run the test yet |
[23:33:12] | skd5aner: | There's one program that, 100% of the time, doesn't play nice with commflags and my wife has to turn if off when she watches |
[23:33:24] | skd5aner: | Intervention – on A&E I believe |
[23:33:29] | Beirdo: | hehe |
[23:33:36] | Beirdo: | OK, that's the one iamlindoro suggested too |
[23:33:44] | Beirdo: | so I'll run tests against it |
[23:33:45] | skd5aner: | lol, I didn't even read up to see you type that |
[23:34:02] | Beirdo: | any other known nasty commflagging shows, I can try as well |
[23:34:15] | skd5aner: | Another one that didn't place nice recently was Marriage Ref on NBC – not the best quality of shows, but a good test case none-the-less if they are still airing re-runs? |
[23:34:19] | Beirdo: | let me go tweak my test script and I can run it... |
[23:34:29] | skd5aner: | s/place/play |
[23:35:41] | [R]: | skd5aner: people acgtually watched htat show? |
[23:35:43] | skd5aner: | I know there's others... LOST used to be bad way back in the day, but wasn't really a problem in the last couple of years |
[23:36:05] | skd5aner: | all in all, it's been fairly robust in most cases for a while |
[23:36:42] | skd5aner: | Law & Order also used to be a pain sometimes – and actually, technically it still gives me issues about 30% of the time with the start |
[23:36:59] | skd5aner: | It'll cut off the intro and start after the first commercial break (about 6 mins into the recording) |
[23:37:18] | Beirdo: | heh |
[23:37:38] | skd5aner: | so it's like "oh, I guess THAT'S who dies – now I have to rewind and see how that happened" |
[23:38:09] | hipitihop (hipitihop!~denis@203.132.229.44) has joined #mythtv-users | |
[23:38:12] | Beirdo: | OK, running against one of the Interventions now |
[23:39:18] | skd5aner: | If you can solve commercial skipping for intervention, even if it's a one-off workaround, my wife will think the next release is the best in years |
[23:40:23] | steadyeddie (steadyeddie!~michael@c-98-209-86-159.hsd1.mi.comcast.net) has joined #mythtv-users | |
[23:40:31] | Beirdo: | hehe |
[23:40:36] | skd5aner: | 1 single irritant like that which can be solved is worth 100 "general improvements" to my wife – it's all about usability to the non-techies who use myth |
[23:40:36] | Beirdo: | we'll see how it does. |
[23:40:56] | Beirdo: | the easiest thing... don't watch such crappy shows :) |
[23:41:04] | Beirdo: | but wives don't usually like to hear that |
[23:41:25] | skd5aner: | Just like it's impossible to explain to anyone who's come over to my house and wonders why they can't tune to various channels in livetv because multirec causes problems in live tv – like they really care – they think my "TV is broken" |
[23:41:44] | Beirdo: | "yes it is, watch recordings" |
[23:41:45] | mzb_zz is now known as mzb | |
[23:42:15] | skd5aner: | My guests don't always want to watch *my* recordings |
[23:42:21] | Beirdo: | going at nearly 100fps |
[23:42:29] | Beirdo: | 720p H.264 |
[23:43:03] | Beirdo: | if it's not horribly worse, I call it a big win for me, far less CPU wasted flagging |
[23:43:03] | skd5aner: | I really hate that philosophy around here... Live TV as a second (or third) class citizen who doesn't belong, but such is that of a PVR community |
[23:43:15] | Beirdo: | yup :) |
[23:44:16] | Caliban (Caliban!~ianmacd@jiskefet.caliban.org) has quit (Read error: Connection timed out) | |
[23:44:54] | Caliban (Caliban!~ianmacd@jiskefet.caliban.org) has joined #mythtv-users | |
[23:45:49] | Beirdo: | OMG, did he? |
[23:46:07] | Beirdo: | a coworker just walked by... and cut one just as he went by my cubicle. |
[23:46:14] | skd5aner: | yea, it's pretty cool – even if it's the same as before and produces bad cuts, it's STILL a win given the performance increase |
[23:46:19] | Beirdo: | this means war, and one he will surely lose |
[23:46:28] | GadgetWisdomGuru: | If I have a specific recording that keeps failing on playback, what is the recommended procedure for troubleshooting? It didn't fail. The filesize is 6GB |
[23:46:45] | Beirdo: | skd5aner: precisely what I was thinking |
[23:47:02] | Beirdo: | it's acting just about the same (so far in testing), but significantly faster |
[23:47:13] | skd5aner: | I should make that more clear... "even if it's the same as before and produce the same bad cuts as the original" |
[23:47:14] | Beirdo: | and a bit better at cutpoints for me too |
[23:48:03] | GadgetWisdomGuru: | I'm getting some new HD stations tomorrow |
[23:48:09] | GadgetWisdomGuru: | CSPAN in HD. |
[23:48:11] | skd5aner: | GadgetWisdomGuru: mythfrontend -v playback -l /someplace/log |
[23:48:13] | Beirdo: | ew |
[23:48:22] | GadgetWisdomGuru: | And thanks for the suggestion. |
[23:48:26] | GadgetWisdomGuru: | Beirdo, ew to CSPAN? |
[23:49:13] | Beirdo: | yeah |
[23:49:27] | Beirdo: | I don't need MORE resolution on politician scumbags |
[23:49:41] | Beirdo: | can't we get "Reduced Definition" for that? |
[23:49:41] | GadgetWisdomGuru: | Well, it isn't good news otherwise |
[23:49:45] | GadgetWisdomGuru: | I think I get Sundance HD too |
[23:49:56] | GadgetWisdomGuru: | And TV Guide HD |
[23:50:04] | Beirdo: | ooooooh |
[23:50:05] | Beirdo: | hehe |
[23:50:09] | Beirdo: | pffft |
[23:50:13] | Beirdo: | anything useful? |
[23:50:14] | GadgetWisdomGuru: | Galavision HD? |
[23:50:18] | GadgetWisdomGuru: | Not really |
[23:50:23] | Beirdo: | Sundance might be OK, I guess |
[23:50:31] | GadgetWisdomGuru: | This is a two week increase |
[23:50:37] | GadgetWisdomGuru: | Last week I got Cooking Channel HD |
[23:50:47] | Beirdo: | there we go |
[23:50:49] | Beirdo: | that's useful |
[23:50:54] | GadgetWisdomGuru: | I suppose. |
[23:51:00] | GadgetWisdomGuru: | It just, nothing I couldn't live without |
[23:51:08] | GadgetWisdomGuru: | What is a showstopping HD channel? |
[23:51:20] | Beirdo: | for me? USA or TNT |
[23:51:22] | Beirdo: | heh |
[23:51:31] | Beirdo: | I watch far too many of their shows |
[23:51:39] | GadgetWisdomGuru: | I got them |
[23:51:44] | GadgetWisdomGuru: | That was a good week |
[23:51:45] | Beirdo: | anything with your favorite sport |
[23:51:52] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[23:52:02] | GadgetWisdomGuru: | What channel offers syncronized Linux usage? |
[23:52:08] | GadgetWisdomGuru: | Wait, not a sport |
[23:52:24] | Beirdo: | neither is Poker, but it's on ESPN |
[23:53:18] | GadgetWisdomGuru: | Cable TV frustrates me |
[23:53:29] | GadgetWisdomGuru: | Every so often, I think of giving up on it |
[23:54:07] | GadgetWisdomGuru: | But if the government gets rid of OTA... |
[23:54:35] | Beirdo: | then, OMG, you'd have to read books. |
[23:54:46] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 265 seconds) | |
[23:54:52] | GadgetWisdomGuru: | Beirdo, I do that too. |
[23:55:02] | Beirdo: | me too |
[23:55:10] | Beirdo: | usually on the bus |
[23:55:13] | GadgetWisdomGuru: | I am reading a great one called Waiting on a Train |
[23:55:16] | GadgetWisdomGuru: | Beirdo, e or paper? |
[23:55:25] | skd5aner: | TWC and VIACOM hate each other, so I'm likely to be the last to get Comedy Central HD :'( |
[23:55:34] | Beirdo: | paper |
[23:55:40] | Beirdo: | there is no substitute |
[23:55:51] | Beirdo: | and if I drop it into a rain puddle, I'm out $5 |
[23:55:55] | Beirdo: | not $200 |
[23:55:56] | [R]: | skd5aner: hd south park is glorious |
[23:56:01] | GadgetWisdomGuru: | Skd5aner, I have TWC and Comedy Central HD |
[23:56:17] | skd5aner: | GadgetWisdomGuru: NY? |
[23:56:25] | GadgetWisdomGuru: | Yes. |
[23:56:26] | GadgetWisdomGuru: | You? |
[23:56:27] | dansushi (dansushi!~dan@72.93.252.46) has quit (Remote host closed the connection) | |
[23:56:35] | GadgetWisdomGuru: | You may have told me, but I am most forgetful. |
[23:56:37] | skd5aner: | GadgetWisdomGuru: thought so... I think that's the only market that has it |
[23:56:38] | GadgetWisdomGuru: | Someone is in Seattle |
[23:57:05] | skd5aner: | GadgetWisdomGuru: no, I'm in "the south" |
[23:57:09] | dansushi (dansushi!~dan@72.93.252.46) has joined #mythtv-users | |
[23:57:20] | GadgetWisdomGuru: | Skd5aner, so, you are in with me on the Cablecard DRM disappointment. |
[23:57:27] | skd5aner: | Damn Yankees and their Comedy Central HD |
[23:57:29] | skd5aner: | ;) |
[23:57:47] | Beirdo: | Damn Yankees is a good band (was) |
[23:57:58] | skd5aner: | musical, etc |
[23:58:12] | Beirdo: | Someone... I'm in Seattle... right friggin downtown at the moment |
[23:58:21] | skd5aner: | I suppose I'm disappointed in everything that prevents me from using what I pay for |
[23:58:28] | GadgetWisdomGuru: | Beirdo, good musical. |
[23:58:36] | GadgetWisdomGuru: | I saw it on Broadway in 92 |
[23:58:49] | GadgetWisdomGuru: | Skd5aner, agreed |
[23:58:59] | Beirdo: | bah to the musical... |
[23:59:02] | Beirdo: | I mean the band |
[23:59:03] | [R]: | skd5aner: but your going to do illegal things with it |
[23:59:11] | [R]: | skd5aner: everyone is... thats why the yhave to lock it down |
[23:59:17] | Beirdo: | with Ted Nugent and what's his face from Styx... |
[23:59:21] | Beirdo: | Tommy Shaw? |
[23:59:21] | GadgetWisdomGuru: | Skd5aner, illegal? Watching my content is illegal? |
[23:59:35] | [R]: | GadgetWisdomGuru: evreyone does illegal things with it... |
[23:59:44] | [R]: | GadgetWisdomGuru: (atleast thats what they want peple to belive) |
[23:59:58] | skd5aner: | I'm dissapointed in the FCC for not clarifying and enforcing better consumer usage of the firewire ports on STB, I'm dissapointed that the *AAs think we all are theives and need to protect legitmate users from themselves |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.