Saturday, April 17th, 2010, 00:02 UTC | ||
[00:02:02] | meshe: | i am completely lost in this java |
[00:03:17] | kormoc: | Today is the day of no productivity! |
[00:03:31] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has quit (Quit: Leaving.) | |
[00:03:52] | meshe: | yup, fresh start on monday figuring out how this code and it's 100's of classes works |
[00:05:06] | ctmjr (ctmjr!~chuck@unaffiliated/ctmjr) has joined #mythtv-users | |
[00:18:31] | markl__ (markl__!~mark@tpsit.com) has quit (Quit: leaving) | |
[00:18:40] | markl_ (markl_!~mark@tpsit.com) has joined #mythtv-users | |
[00:19:14] | Cap_J_L_Picard: | that's why I like ruby and python, really difficult to write unmaintainable code... |
[00:19:41] | wagnerrp: | i wouldnt say that |
[00:20:03] | wagnerrp: | once you start delving into the __ functions, things can get messy real quick |
[00:20:33] | ** kormoc blinks towards wagnerrp ** | |
[00:20:58] | wagnerrp: | kormoc: things like constructors and destructors |
[00:21:05] | wagnerrp: | __init__ and __del__ are basic ones |
[00:21:21] | wagnerrp: | but theres a whole slew of those that let you rewrite the basic functionality of classes |
[00:21:48] | kormoc: | ooh, I see what's up |
[00:21:51] | kormoc: | never mind |
[00:22:08] | Cap_J_L_Picard: | wagnerrp: I've used them, it's a lot harder to write unmaintainable code than C/C++, Perl or even Java and C#... |
[00:24:21] | wagnerrp: | Cap_J_L_Picard: any use of __setattr__ instantly makes your code a mess |
[00:24:36] | ** wagnerrp would know, he used it heavily in the MythTV bindings ** | |
[00:25:17] | Cap_J_L_Picard: | wagnerrp: it's not needed that frequently. |
[00:25:40] | awalls (awalls!~awalls@d-216-36-24-245.cpe.metrocast.net) has joined #mythtv-users | |
[00:25:46] | wagnerrp: | Cap_J_L_Picard: the bindings basically implement a crude ORM |
[00:26:04] | wagnerrp: | mapping between object attributes and database tables |
[00:26:11] | Cap_J_L_Picard: | wagnerrp: then you would need it, but give me any ORM that isn't a mess to write? |
[00:26:26] | ctmjr (ctmjr!~chuck@unaffiliated/ctmjr) has quit (Quit: Leaving) | |
[00:26:32] | wagnerrp: | fair enough |
[00:26:41] | wagnerrp: | the #python people basically told me 'dont' |
[00:26:44] | Cap_J_L_Picard: | And, as a computer science student, I should know what ORM is... |
[00:27:07] | Cap_J_L_Picard: | personally, I prefer ruby over python, but well. |
[00:27:36] | Cap_J_L_Picard: | generally if you don't know what a __function__ does, you probably don't need it... |
[00:29:53] | Cap_J_L_Picard: | technically, I should say method not function... |
[00:30:14] | wagnerrp: | i never understood the difference |
[00:30:37] | Cap_J_L_Picard: | if you were teaching programming to people who (mostly) haven't programmed before, would you choose Java? |
[00:30:52] | wagnerrp: | ive never used java, so no |
[00:31:04] | wagnerrp: | would be fairly hard for me to teach using it |
[00:31:07] | Cap_J_L_Picard: | wagnerrp: Method -> assigned to a class (OOP), Function, not assigned to a class. |
[00:31:18] | wagnerrp: | ah |
[00:31:25] | wagnerrp: | so just semantics |
[00:31:33] | Cap_J_L_Picard: | Functions in C, Method in C++ |
[00:31:37] | Cap_J_L_Picard: | not quite... |
[00:31:48] | Cap_J_L_Picard: | but mostly... |
[00:32:13] | Cap_J_L_Picard: | a Method is stricter in operation, with namespaces and stuff... |
[00:32:13] | kormoc is now known as kormoc_afk | |
[00:32:51] | Cap_J_L_Picard: | I can call 5 methods method() in 5 different classes and not have them interfer |
[00:33:08] | awalls: | Namespace? A method has an implicit pointer to the associated structure ("This") |
[00:33:11] | dugger5688 (dugger5688!~dugger568@ip72-208-4-116.ph.ph.cox.net) has quit (Quit: dugger5688) | |
[00:33:19] | awalls: | Nmaespace I thought were a tad different |
[00:33:27] | awalls: | /Namespaces/ |
[00:33:33] | Cap_J_L_Picard: | awalls: not always in the case of static methods. |
[00:33:55] | awalls: | Well yes, but singletones are not the norm |
[00:34:02] | awalls: | /singletons/ |
[00:34:21] | Cap_J_L_Picard: | namespaces is how you breakdown packages/modules/... from classes from methods |
[00:34:30] | awalls: | Oops wait, now I'm screwed up. |
[00:34:43] | Cap_J_L_Picard: | a singleton is different again... |
[00:34:55] | awalls: | Yes the cobwebs haven't cleared out. |
[00:36:11] | Cap_J_L_Picard: | awalls: should we go into functional programming too? Would it help clear out those cobwebs.... |
[00:36:37] | awalls: | My recommendation is to use the right tools for the job.... |
[00:36:47] | awalls: | whatever that may be. |
[00:38:32] | Cap_J_L_Picard: | oh, I agree there. I would not be using python of ruby to do really heavy Math. They are just too slow, in fact, wouldn't even use C# or Java... |
[00:38:45] | awalls: | Sadly, the last programming language I was paid to use professionally was Ada |
[00:39:00] | Cap_J_L_Picard: | would probably pick C or C++ (depending if I need OO techniques or not). |
[00:39:14] | Cap_J_L_Picard: | or a functional language designed for Math. |
[00:39:46] | Cap_J_L_Picard: | parsing text though, I would probably choose Python or Ruby over Perl now... |
[00:40:09] | awalls: | Last time I wrote a parser, I used lex and yacc – made the job easy. |
[00:41:16] | Cap_J_L_Picard: | awalls: depends on how complicated you want the parser, if you are parsing XML or CSV or anything ruby/perl/python... have nice parsing stuff already in it... |
[00:41:38] | Cap_J_L_Picard: | and then you also have PCRE right there already. |
[00:42:39] | Cap_J_L_Picard: | yeah, if I'm writing an actuall compiler I'll do it using lex and yacc and the like. |
[00:42:57] | awalls: | Yeah, I had to write a specialized script interpreter. |
[00:44:08] | awalls: | It was a fairly simply language, I used m4 to build up more complex expressions in the scripts themselves |
[00:44:33] | awalls: | Oh, well way OT for MythTV-users.... |
[00:48:01] | croppa (croppa!~stuart@135.27.233.220.static.exetel.com.au) has quit (Read error: Connection reset by peer) | |
[00:50:18] | Cap_J_L_Picard: | yeah, we've been having one of those offtopic kinds of days... |
[00:55:39] | GlemSom (GlemSom!~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk) has quit (Quit: Leaving) | |
[00:58:08] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[00:58:51] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has quit (Ping timeout: 245 seconds) | |
[00:59:43] | croppa (croppa!~stuart@135.27.233.220.static.exetel.com.au) has joined #mythtv-users | |
[01:07:26] | Shadow__1 is now known as Shadow__X | |
[01:07:34] | Shadow__X (Shadow__X!~jose@c-76-99-93-112.hsd1.nj.comcast.net) has quit (Changing host) | |
[01:07:34] | Shadow__X (Shadow__X!~jose@unaffiliated/shadowx/x-411846) has joined #mythtv-users | |
[01:08:05] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has quit (Remote host closed the connection) | |
[01:08:42] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has joined #mythtv-users | |
[01:13:43] | markl_: | is there a quick way to nuke all of the recordings in the db? |
[01:17:01] | kormoc_afk is now known as kormoc | |
[01:20:12] | kim0 (kim0!~akamal@unaffiliated/kim0) has quit (Ping timeout: 240 seconds) | |
[01:25:01] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has joined #mythtv-users | |
[01:25:15] | markl_ (markl_!~mark@tpsit.com) has quit (Quit: Lost terminal) | |
[01:30:00] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has quit (Quit: Lost terminal) | |
[01:34:09] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has quit (Remote host closed the connection) | |
[01:36:11] | dougl (dougl!~doug@S01060018f3992b5d.wp.shawcable.net) has joined #mythtv-users | |
[01:43:04] | chainsawbike (chainsawbike!~chainsawb@202-0-50-230.cable.telstraclear.net) has quit (Ping timeout: 252 seconds) | |
[01:43:10] | chainsawbike_ (chainsawbike_!~chainsawb@202-0-50-230.cable.telstraclear.net) has joined #mythtv-users | |
[01:47:07] | zablalbaz (zablalbaz!~ctatman_l@cpe-065-190-180-101.nc.res.rr.com) has joined #mythtv-users | |
[01:47:18] | zablalbaz (zablalbaz!~ctatman_l@cpe-065-190-180-101.nc.res.rr.com) has left #mythtv-users () | |
[02:00:46] | inordkuo (inordkuo!~inorkuo@adsl-177-182-134.int.bellsouth.net) has joined #mythtv-users | |
[02:08:02] | croppa (croppa!~stuart@135.27.233.220.static.exetel.com.au) has quit (Remote host closed the connection) | |
[02:26:36] | Brad-D (Brad-D!~brad@2002:4344:2cc2:0:222:15ff:fe7a:f43) has joined #mythtv-users | |
[02:38:38] | croppa (croppa!~stuart@135.27.233.220.static.exetel.com.au) has joined #mythtv-users | |
[02:53:28] | RDV_Linux (RDV_Linux!~doug@CPE001195554bb4-CM00111a59bd9e.cpe.net.cable.rogers.com) has quit (Ping timeout: 252 seconds) | |
[02:58:55] | klk (klk!~klk@76.211.128.200) has joined #mythtv-users | |
[03:00:03] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[03:01:17] | lyricnz (lyricnz!~simonrobe@202.124.75.128) has joined #mythtv-users | |
[03:03:29] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 276 seconds) | |
[03:07:13] | Lord_Deathscythe (Lord_Deathscythe!~chris@h210.159.20.98.dynamic.ip.windstream.net) has joined #mythtv-users | |
[03:07:55] | Gumby (Gumby!~gumby@unaffiliated/gumby) has quit (Ping timeout: 248 seconds) | |
[03:13:14] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has quit (Ping timeout: 240 seconds) | |
[03:16:15] | klk (klk!~klk@76.211.128.200) has quit (Ping timeout: 276 seconds) | |
[03:22:59] | lyricnz (lyricnz!~simonrobe@202.124.75.128) has quit (Ping timeout: 276 seconds) | |
[03:39:12] | Lord_Deathscythe (Lord_Deathscythe!~chris@h210.159.20.98.dynamic.ip.windstream.net) has quit (Quit: I am called onward) | |
[03:55:06] | iamlindoro: | j-rod, Bah, just sent a message that referenced you and misspelled your name, apologies |
[04:03:12] | squidly (squidly!~squidly@HoodLUG/member/squidly) has quit (Remote host closed the connection) | |
[04:12:40] | suffice (suffice!~phann@124.5.170.153) has quit (Ping timeout: 252 seconds) | |
[04:20:11] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[04:20:24] | squidly (squidly!~squidly@HoodLUG/member/squidly) has joined #mythtv-users | |
[04:22:26] | wagnerrp: | iamlindoro: any idea what this 'gorka' character is trying to do on mythtvtalk? |
[04:22:55] | iamlindoro: | I have no idea, but I decided I didn't have enough patience to try to get a translation |
[04:23:26] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 276 seconds) | |
[04:24:12] | wagnerrp: | '40 hard drives full of high def content' |
[04:24:15] | wagnerrp: | woah... |
[04:25:02] | iamlindoro: | wow |
[04:26:34] | wagnerrp: | apparently he filled them over firewire before his cableco started using 5c |
[04:27:09] | iamlindoro: | must have never deleted anything |
[04:27:23] | iamlindoro: | or used an endless supply of 20 GB drives |
[04:35:39] | Dave123 (Dave123!~dave@cpe-74-69-108-236.rochester.res.rr.com) has joined #mythtv-users | |
[04:45:46] | suffice (suffice!~phann@58.141.15.171) has joined #mythtv-users | |
[04:47:27] | awalls (awalls!~awalls@d-216-36-24-245.cpe.metrocast.net) has quit (Quit: Leaving.) | |
[04:47:42] | RDV_Linux (RDV_Linux!~doug@CPE001195554bb4-CM00111a59bd9e.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[04:49:07] | npm (npm!~npm@cpe-76-169-12-237.socal.res.rr.com) has quit (Quit: Leaving.) | |
[04:54:03] | markl_ (markl_!~mark@tpsit.com) has joined #mythtv-users | |
[04:55:40] | klk (klk!~klk@76.211.128.200) has joined #mythtv-users | |
[05:05:28] | chainsawbike_ (chainsawbike_!~chainsawb@202-0-50-230.cable.telstraclear.net) has quit (Ping timeout: 252 seconds) | |
[05:15:52] | beatbreaker (beatbreaker!~tang@c211-30-15-33.rivrw2.nsw.optusnet.com.au) has joined #mythtv-users | |
[05:16:09] | beatbreaker: | Hiisty, i've got a dynamic DNS i want to use something liek www.yi.org to trace my IP for a DNS... dut they stopped accepting new members |
[05:16:20] | beatbreaker: | ....sorry that was to everyone |
[05:16:57] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has joined #mythtv-users | |
[05:17:10] | wagnerrp: | if you have a dynamic dns address, why would you need a yi.org membership? |
[05:18:12] | beatbreaker: | ....my address keeps changing... so i need soethign like that to trace it and make a dns name for it |
[05:18:19] | beatbreaker: | what do people here use for mythweb? |
[05:18:24] | wagnerrp: | so you dont have one... you want one |
[05:18:48] | beatbreaker: | I want one... i was going to use yi but they're not accepting members anymroe |
[05:18:50] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[05:19:06] | wagnerrp: | why not just register a proper hostname? |
[05:19:14] | wagnerrp: | how often does your external IP actually change? |
[05:19:48] | beatbreaker: | i want somethign quick, nasty and free just to do in the next 10 minutes |
[05:20:01] | beatbreaker: | like i said i was going to use that other one but can't now |
[05:20:03] | wagnerrp: | also, from the other channel, 0.23-fixes is available on subversion already |
[05:20:22] | wagnerrp: | if you just need something quick, dont worry about the name |
[05:20:25] | wagnerrp: | just use the IP directly |
[05:23:17] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[05:24:10] | Defense|Twin (Defense|Twin!~jepz@f054002180.adsl.alicedsl.de) has joined #mythtv-users | |
[05:25:34] | beatbreaker: | wagnerrp, great. Well i've decided on dyndns i'll do that now. I odn't think i've got other stuff ready like part forwarding or whatever but it seems that there's not much info about that where i'm looking |
[05:25:59] | wagnerrp: | why do you need a dns address? |
[05:26:39] | beatbreaker: | ok well i'm going to wait for the next version of Ubuntu to come out and upgrade all my frontends, then upgrade the server to centos and have 0.23 on there |
[05:26:40] | wagnerrp: | if this is a one time thing, just use the IP address |
[05:27:05] | wagnerrp: | if this is something more permanent, shell out for a proper registered hostname |
[05:27:13] | iamlindoro: | oof, centos |
[05:27:21] | wagnerrp: | you dont want to use centos with mythtv |
[05:27:33] | wagnerrp: | its too old, by intentional design |
[05:27:34] | beatbreaker: | yeah, i don't think i've got my ports forwarded yet... i need my port 80 on 192.168.1.200 to be coming out of my public ip |
[05:28:40] | wagnerrp: | the purpose of those dynamic dns services is that they allow you to change your address quickly and get it flushed from remote caches |
[05:28:42] | beatbreaker: | yeah i know i'll be on my own by going centos but the server is to really teach me how to use redhat, myth is a bonus |
[05:28:57] | wagnerrp: | my registrar supports TTLs as low as half an hour |
[05:29:16] | wagnerrp: | beatbreaker: its not a lack of mythtv packages |
[05:29:28] | beatbreaker: | it's a lack of support |
[05:29:35] | wagnerrp: | the problem is that a number of dependencies of mythtv are too old on centos |
[05:29:43] | beatbreaker: | i'm sure most you guys support mythbuntu the best |
[05:29:50] | wagnerrp: | they use an old kernel, which means very limited support for modern hardware |
[05:30:12] | wagnerrp: | they have an old version of python, meaning the python bindings, and a number of plugins which rely on then dont work |
[05:30:29] | wagnerrp: | we dont support mythbuntu, the mythbuntu guys do |
[05:30:35] | hads (hads!~hads@argon.nice.net.nz) has joined #mythtv-users | |
[05:31:02] | beatbreaker: | yeah i understand that... i mean that if i had issues, it'll be easier to get help if i was on mythbuntu |
[05:31:09] | wagnerrp: | iamlindoro: Capt'M runs centos, but isnt he still using 0.21 on his production systems? |
[05:32:04] | beatbreaker: | i know updating somethign like Python and perl packages can be tricky |
[05:32:20] | leprechau: | so...I just updated to 0.23-rc2 ... mythweb now tells me that videos storage group is required ... do iso/img dvd images work in .23 with mythvideo storage groups? |
[05:32:31] | beatbreaker: | i want to get off SuSE and move to something more redhad like... i guess fedora in that case |
[05:33:45] | leprechau: | the binary only distros are a pain in the butt |
[05:34:15] | leprechau: | if you want something light and simple with great myth support look at archlinux |
[05:34:16] | wagnerrp: | leprechau: no, not yet |
[05:34:40] | beatbreaker: | i've used archlinux before, i like it, actually it's one of my desktops |
[05:35:01] | leprechau: | wagnerrp, thanks...I'll just forget about videos in mythweb for now |
[05:35:21] | wagnerrp: | beatbreaker: everyone is going to have their own preferred distro, and most will run mythtv equally fine |
[05:35:24] | leprechau: | beatbreaker, same ... my desktop/latop/myth boxes are arch |
[05:35:34] | beatbreaker: | but i want to become more familiar with redhat related systems... so that's why the change to cent/fedora |
[05:35:42] | wagnerrp: | just understand that you really want to know what youre doing if youre going to run a modern version of mythtv on arch |
[05:36:09] | wagnerrp: | RHEL is fine, fedora is fine |
[05:36:11] | KungFuJesus (KungFuJesus!~adam@CN-ESR1-69-61-222-184.fuse.net) has quit (Ping timeout: 248 seconds) | |
[05:36:22] | beatbreaker: | haha i think i'll be ok, my knowledge of *nix is far better than my knowledge of networking |
[05:36:42] | leprechau: | I just put together pkgbuilds for 0.23-rc2 on arch for mythtv/mythplugins/myththemes if anyones interested I can stick em on aur |
[05:36:50] | wagnerrp: | but centos's behavior of sticking around with old versions of software for years for stability's sake doesnt bode well for mythtv |
[05:38:02] | beatbreaker: | wagnerrp, i thought that centos mirrored centos as much as possible? so theyr'e actually versions behind in versions of pythin code etc..? |
[05:38:20] | beatbreaker: | sorry centos mirrored redhat |
[05:38:50] | wagnerrp: | centos takes one revision of redhat, and then sticks with that for several years |
[05:38:54] | leprechau: | centos and redhat are getting further and further diverged all the time |
[05:39:04] | wagnerrp: | backporting their own bugfixes and security patches |
[05:39:24] | wagnerrp: | for the purposes of providing server operators with a long term stable platform |
[05:40:11] | wagnerrp: | once they release 6.0, they will be up to date with redhat again |
[05:40:21] | wagnerrp: | and then will stick with that version for another 2–3 years |
[05:40:38] | leprechau: | thanks again...bedtime for me...0.23-rc2 looks good ... and arclight is really nice |
[05:40:56] | wagnerrp: | that design practice works great for servers |
[05:41:24] | wagnerrp: | but not so much for multimedia applications like MythTV, which want new hardware support and new features |
[05:42:05] | beppo_ (beppo_!~b3pp0@p57A4FCEC.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[05:45:05] | beatbreaker: | wagnerrp, i understand, thanks! so when is centos 6 coming :P It might be better to go fedora then... it'll be structured like redhat, but newer... i don't need to worry about hw support though so much because everything on there is old, the tv card is good but it's like the nova 500t or something |
[05:45:06] | klk (klk!~klk@76.211.128.200) has quit (Ping timeout: 276 seconds) | |
[05:45:29] | wagnerrp: | beatbreaker: no clue, i dont use centos, or any RH based system for that matter |
[05:45:42] | octavsly (octavsly!~octavsly@195-241-244-119.ip.telfort.nl) has joined #mythtv-users | |
[05:52:35] | KraMer (KraMer!~mark@2002:46f0:c2c9:0:215:f2ff:fef4:4288) has left #mythtv-users ("Leaving") | |
[05:57:12] | chainsawbike (chainsawbike!~chainsawb@202-0-50-230.cable.telstraclear.net) has joined #mythtv-users | |
[06:02:53] | octavsly (octavsly!~octavsly@195-241-244-119.ip.telfort.nl) has quit (Ping timeout: 276 seconds) | |
[06:22:14] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has quit (Ping timeout: 240 seconds) | |
[06:22:31] | bobgill (bobgill!~smileyfac@CPE0016b6062e69-CM0011e6c40b1f.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[06:53:23] | unixSnob (unixSnob!~unixSnob@starfury.spearlink.com) has joined #mythtv-users | |
[07:08:46] | TJourney (TJourney!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has joined #mythtv-users | |
[07:09:00] | TJourney: | Howdy, how are y'all doing |
[07:09:02] | npm (npm!~npm@cpe-76-169-12-237.socal.res.rr.com) has joined #mythtv-users | |
[07:10:25] | TJourney: | I'm considering building a dvr using MythTV on Ubuntu, does anybody know of any good guides or sources to go to for advice and direction? Most that I come across are a tad outdated. |
[07:10:45] | wagnerrp: | http://mythtv.org/wiki/Executive_Overview |
[07:14:41] | TJourney (TJourney!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has quit (Read error: Connection reset by peer) | |
[07:14:42] | TJ-DROID (TJ-DROID!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has joined #mythtv-users | |
[07:15:20] | wagnerrp: | assuming you crashed and didnt see the link... http://mythtv.org/wiki/Executive_Overview |
[07:17:37] | TJourney (TJourney!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has joined #mythtv-users | |
[07:17:37] | TJ-DROID (TJ-DROID!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has quit (Read error: Connection reset by peer) | |
[07:21:52] | ** wagnerrp gives up... ** | |
[07:23:07] | TJ-DROID (TJ-DROID!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has joined #mythtv-users | |
[07:23:51] | TJourney (TJourney!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has quit (Ping timeout: 245 seconds) | |
[07:25:29] | pizzledizzle (pizzledizzle!~pizdets@pool-98-116-202-61.nycmny.fios.verizon.net) has quit () | |
[07:29:09] | wagnerrp: | ugh... im going to have this song stuck in my head for days now |
[07:30:01] | clever: | i better not ask |
[07:30:21] | wagnerrp: | its nothing bad |
[07:30:45] | clever: | but it might get stuck in mine next! |
[07:30:55] | wagnerrp: | some sequence from one of those 70's synth rock bands |
[07:31:09] | wagnerrp: | i heard something similar, that made me remember that sequence |
[07:31:16] | wagnerrp: | but i dont remember enough of the song to figure out what it is |
[07:31:31] | clever: | then i'm safe! |
[07:49:17] | grumpydevil (grumpydevil!~rudy@2001:610:73e:0:225:64ff:fea4:928e) has joined #mythtv-users | |
[08:11:09] | revilootneg (revilootneg!~oliver@pool-202-65-198-89.dbd-ipconnect.net) has joined #mythtv-users | |
[08:15:37] | oobe (oobe!~thingo@insidiousramblings.com) has quit (Remote host closed the connection) | |
[08:28:19] | [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving) | |
[08:28:46] | johd (johd!~johd@90.146.65.36) has joined #mythtv-users | |
[08:38:18] | poodyp (poodyp!~mordac@cpe-98-148-126-59.socal.res.rr.com) has quit (Ping timeout: 268 seconds) | |
[08:39:07] | cdpuk (cdpuk!~chris@cdpuk.cdp.me.uk) has joined #mythtv-users | |
[08:41:25] | johd (johd!~johd@90.146.65.36) has quit (Quit: Leaving) | |
[08:51:02] | Jeff999 (Jeff999!~jeff@124.168.211.146) has joined #mythtv-users | |
[08:55:11] | mbamford (mbamford!~mbamford@174.1.209.232) has quit (Ping timeout: 246 seconds) | |
[08:56:11] | hadees (hadees!~hadees@216-188-225-151.dyn.grandenetworks.net) has quit (Remote host closed the connection) | |
[08:56:56] | mbamford (mbamford!~mbamford@174.1.209.232) has joined #mythtv-users | |
[09:02:01] | cynicismic (cynicismic!~rclark@188-223-82-64.zone14.bethere.co.uk) has joined #mythtv-users | |
[09:02:28] | unixSnob (unixSnob!~unixSnob@starfury.spearlink.com) has quit (Quit: leaving) | |
[09:04:22] | hadees (hadees!~hadees@216-188-225-151.dyn.grandenetworks.net) has joined #mythtv-users | |
[09:11:28] | stefanj (stefanj!~stefanj@81-178-37-229.dsl.pipex.com) has joined #mythtv-users | |
[09:12:23] | Defense (Defense!~jepz@d137127.adsl.hansenet.de) has joined #mythtv-users | |
[09:13:06] | Defense|Twin (Defense|Twin!~jepz@f054002180.adsl.alicedsl.de) has quit (Ping timeout: 276 seconds) | |
[09:13:32] | hadees (hadees!~hadees@216-188-225-151.dyn.grandenetworks.net) has quit (Remote host closed the connection) | |
[09:21:43] | revilootneg (revilootneg!~oliver@pool-202-65-198-89.dbd-ipconnect.net) has quit (Quit: leaving) | |
[09:30:56] | revilootneg (revilootneg!~oliver@pool-202-65-198-89.dbd-ipconnect.net) has joined #mythtv-users | |
[09:36:54] | stefanj (stefanj!~stefanj@81-178-37-229.dsl.pipex.com) has left #mythtv-users () | |
[10:07:06] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B222E3A.dip.t-dialin.net) has joined #mythtv-users | |
[10:11:15] | Easy_Rider9999 (Easy_Rider9999!~Miranda@p5B222E3A.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[10:34:33] | Jeff999 (Jeff999!~jeff@124.168.211.146) has quit (Remote host closed the connection) | |
[10:48:26] | johd (johd!~johd@dyn167060.wlan.jku.at) has joined #mythtv-users | |
[11:03:13] | Wiiilmaa (Wiiilmaa!~wilmerj@p549FB23B.dip.t-dialin.net) has joined #mythtv-users | |
[11:16:22] | kim0 (kim0!~akamal@unaffiliated/kim0) has joined #mythtv-users | |
[11:25:05] | xaxes (xaxes!~xaxes|fre@www.foonative.org) has joined #mythtv-users | |
[11:25:18] | xaxes: | heyhey.. how can I set auto-commercialskip? |
[11:26:06] | mag0o: | http://www.mythtv.org/wiki/User_Manual:Detail . . . mercial_Skip |
[11:27:49] | xaxes: | mag0o: Im able to set this by wathcing recording -> pressing 'm' and go through the menu to set it.. but it isnt persistent.. I have to do this every time I watch a recording |
[11:33:29] | mag0o: | there is a frontend setting on that link |
[11:34:20] | mag0o: | general playback part 2 according to the wiki, i don't know the menu count off hand to get there |
[11:34:58] | mag0o: | setup > tv settings > playback |
[11:36:13] | xaxes: | got it! thanks mag0o :) |
[11:36:24] | stefanj (stefanj!~stefanj@81-178-37-229.dsl.pipex.com) has joined #mythtv-users | |
[11:36:40] | xaxes: | bye |
[11:36:40] | cleith (cleith!~cleith@d24-150-206-71.home.cgocable.net) has joined #mythtv-users | |
[11:36:41] | xaxes (xaxes!~xaxes|fre@www.foonative.org) has left #mythtv-users () | |
[11:37:23] | cleith: | Hello all, anyone around? |
[11:37:34] | stuartm: | no |
[11:37:59] | mag0o: | im asquare |
[11:38:41] | cleith: | Is it possible to configure myth to set a wakeup (rtc) ahead of a recording but not actually shut down the machine? |
[11:38:55] | mag0o: | oh yeah, wifey's dead laptop had a 1gb chip i stuck in the new revo! now loading myth, woohoo |
[11:39:15] | mag0o: | it the machine isn't shut down, why does it need to be woke up? |
[11:44:03] | cleith: | Well, we use the machine (myth backend and frontend) for lots of stuff: pictures, movies, browsing the web. Any we only ever suspend it, not shut it down. I was thinking that if myth writes a wakeup immediately when a recording is scheduled, but didn't shut down, then it wouldn't matter whether something like gnome-power-manager suspended the machine or the user suspended it at any time. If myth suspends the machine, I have to make s |
[11:44:05] | cleith: | ure (a) it is OK to do so (I am aware of pre-shutdown check ability) and (b) a user hasn't already suspended the machine before myth can write the wakeup time. |
[11:44:48] | mag0o: | ah |
[11:45:04] | oobe (oobe!~thingo@insidiousramblings.com) has joined #mythtv-users | |
[11:46:16] | cleith: | I have tried setting the idle time to something small and the shutdown command to /bin/true, but this doesn't seem to work. |
[11:53:49] | mag0o: | I'll be of no use as i keep my backend on all the time, sorry |
[11:56:43] | cleith: | np |
[11:58:37] | Wiiilmaa: | Hello, i have some playback problems on my mythtv boxes. I'm using "Mythbuntu", Mythtv on minimal a xubuntu, Backend is a core 2 duo with an old nvidia graphics card and 4 WinTV Nova HD S2 used for recording and playback. Seperate Frontend is an AMD based barebone. |
[12:02:51] | Wiiilmaa: | No problem with continuous playback on both frontends, but while editing on the separate Frontend (AMD Barebone) skipping one frame forward from frame x to frame y and one frame back shows frame x as position and frame y as picture, so i don't really know what picture really belongs to the frame. |
[12:05:06] | Goga777 (Goga777!~Goga777@shpd-95-53-184-50.vologda.ru) has joined #mythtv-users | |
[12:06:13] | superdump (superdump!~rob@unaffiliated/superdump) has joined #mythtv-users | |
[12:07:01] | inordkuo (inordkuo!~inorkuo@adsl-177-182-134.int.bellsouth.net) has quit (Quit: Leaving.) | |
[12:16:39] | cynicismic (cynicismic!~rclark@188-223-82-64.zone14.bethere.co.uk) has quit (Quit: leaving) | |
[12:19:01] | Wiiilmaa: | On the Frontend of the Backend everything has been O.K. until recently, when a crashing Frontend changed/deleted/corrupted parts of the configuration (At the next start the theme changed to a them i did not use before). Since then editing recordings became nearly impossible because of the skipping behaviour. In editing mode Skipping a step greater than 5 seceonds results displaying the destination frame for a split second before jumpin |
[12:19:01] | Wiiilmaa: | g back to the frame where the skip started. So skipping through the whole file results in the display not moving except the short flickering of frames. Skipping 5 Seconds or less results in "random" frames being displayed, sometimes the frame displayed changes, sometimes it doesn't. Skipping single frames seems drag the position behind, the displayed framenumber is changed in accordance to the movement. The Picture is one movement behi |
[12:19:02] | Wiiilmaa: | nd. if a skip a frame forward, the picture moves one frame forward. but changing the direction results in the picture changing the direction one step behind. 1-> 1, 2-> 2, 3-> 3, 2 -> 4, 1 -> 3, 0 -> 2, 1 -> 1, 2 -> 2... |
[12:19:38] | Wiiilmaa: | What could be done to get it usable again? |
[12:37:45] | bjd (bjd!ben@alice.poddle.net) has joined #mythtv-users | |
[12:38:34] | bjd: | good afternoon, just wondering if anyone has any ideas as to how i could automate `mythcommflag --video` after transferring a video? |
[12:40:31] | cleith (cleith!~cleith@d24-150-206-71.home.cgocable.net) has quit (Ping timeout: 245 seconds) | |
[12:42:43] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has joined #mythtv-users | |
[13:01:56] | bep_ (bep_!~b3pp0@p57A4FCEC.dip.t-dialin.net) has joined #mythtv-users | |
[13:01:57] | bep_ (bep_!~b3pp0@p57A4FCEC.dip.t-dialin.net) has quit (Changing host) | |
[13:01:57] | bep_ (bep_!~b3pp0@unaffiliated/bep/x-392433) has joined #mythtv-users | |
[13:06:22] | Lord_Deathscythe (Lord_Deathscythe!~chris@h210.159.20.98.dynamic.ip.windstream.net) has joined #mythtv-users | |
[13:08:21] | gbee_ (gbee_!~gbee@cpc2-derb9-0-0-cust872.leic.cable.ntl.com) has joined #mythtv-users | |
[13:08:21] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v gbee_ | |
[13:08:26] | stuartm (stuartm!~gbee@cpc2-derb9-0-0-cust872.leic.cable.ntl.com) has quit (Ping timeout: 265 seconds) | |
[13:09:37] | stefanj (stefanj!~stefanj@81-178-37-229.dsl.pipex.com) has quit (Remote host closed the connection) | |
[13:10:44] | unixSnob (unixSnob!~unixSnob@starfury.spearlink.com) has joined #mythtv-users | |
[13:11:43] | RDV_Linux (RDV_Linux!~doug@CPE001195554bb4-CM00111a59bd9e.cpe.net.cable.rogers.com) has quit (Quit: Ex-Chat) | |
[13:13:41] | mag0o: | so, it took me just over two hours to unpack, install mythbuntu and test out my revo connected via hdmi with audio. works like a champ :) |
[13:13:54] | mag0o: | vdpau and all |
[13:14:53] | mag0o: | now i just have to wait on my optical audio switch + cables for optical out from my tv to the receiver since the receiver only has one optical in |
[13:16:56] | Lord_Deathscythe (Lord_Deathscythe!~chris@h210.159.20.98.dynamic.ip.windstream.net) has quit (Quit: I am called onward) | |
[13:27:14] | TheAsp: | go buy an hdmi switching receiver ;) |
[13:29:45] | streeter (streeter!~streeter@user-24-214-254-79.knology.net) has joined #mythtv-users | |
[13:29:48] | mag0o: | hehe, $10 as opposed to $100's :) i was fortunate enough to be able to get the tv, revo and some cables...all in the same year |
[13:30:49] | gbee_ is now known as gbee | |
[13:33:19] | stoffel (stoffel!~quassel@p57B4CF88.dip.t-dialin.net) has joined #mythtv-users | |
[13:33:19] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v stoffel | |
[13:34:47] | TheAsp: | you'll probably find that the optical out of your tv is rather limited |
[13:35:19] | mag0o: | it is, already discovered that via dish hdmi > tv > tv-optical > receiver |
[13:35:22] | mag0o: | no dolby |
[13:35:29] | TheAsp: | yeah |
[13:35:31] | TheAsp: | suckith |
[13:35:35] | mag0o: | yup |
[13:35:48] | TheAsp: | i don't know why they wont put a freaking coax on it |
[13:36:08] | mag0o: | that would be nice |
[13:51:14] | Heliwr (Heliwr!~Heliwr@pdpc/supporter/student/heliwr) has quit (Ping timeout: 240 seconds) | |
[13:51:30] | Heliwr (Heliwr!~Heliwr@S0106000000000001.vs.shawcable.net) has joined #mythtv-users | |
[13:51:30] | Heliwr (Heliwr!~Heliwr@pdpc/supporter/student/heliwr) has joined #mythtv-users | |
[13:51:30] | Heliwr (Heliwr!~Heliwr@S0106000000000001.vs.shawcable.net) has quit (Changing host) | |
[13:57:14] | superdump (superdump!~rob@unaffiliated/superdump) has quit (Quit: WeeChat 0.3.2-rc1) | |
[14:05:43] | TJ-DROID (TJ-DROID!~TJourney@c-24-147-12-223.hsd1.nh.comcast.net) has quit (Read error: Connection reset by peer) | |
[14:06:47] | tassbur (tassbur!~tassbur@83.53.250.186) has joined #mythtv-users | |
[14:09:00] | unixSnob (unixSnob!~unixSnob@starfury.spearlink.com) has quit (Quit: leaving) | |
[14:13:46] | tassbur (tassbur!~tassbur@83.53.250.186) has quit (Quit: Konversation terminated!) | |
[14:14:12] | tassbur (tassbur!~tassbur@83.53.250.186) has joined #mythtv-users | |
[14:24:04] | ThisOtherGuy: | hey All |
[14:24:29] | ThisOtherGuy: | does anyone know if there's a way in mythweb to change the default columns on the Upcoming Recordings page? |
[14:26:17] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has quit (Read error: Connection reset by peer) | |
[14:26:19] | inordkuo1 (inordkuo1!~inorkuo@216.237.200.144) has joined #mythtv-users | |
[14:32:14] | inordkuo1 (inordkuo1!~inorkuo@216.237.200.144) has quit (Ping timeout: 246 seconds) | |
[14:33:52] | nichos (nichos!~n00182937@c-98-231-118-122.hsd1.fl.comcast.net) has joined #mythtv-users | |
[14:36:01] | nichos: | hi all, im trying to do some trouble shooting on my mythtv. I'm running both the front end and backend on the same box. Mythfrontend is frozen with 100% cpu. I can't switch to a new vterm (it hangs there) but I can ssh |
[14:36:11] | nichos: | should I check anything before I kill it via ssh? |
[14:36:15] | nichos: | I was watching livetv |
[14:39:09] | ThisOtherGuy: | you might want to check the IO to see if it's thrashing on some file |
[14:39:12] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has joined #mythtv-users | |
[14:39:43] | nichos: | ThisOtherGuy: the drive is mostly idle |
[14:39:54] | nichos (nichos!~n00182937@c-98-231-118-122.hsd1.fl.comcast.net) has left #mythtv-users () | |
[14:40:42] | ThisOtherGuy: | hmm – mythfrontend log? |
[14:41:12] | nichos (nichos!~n00182937@c-98-231-118-122.hsd1.fl.comcast.net) has joined #mythtv-users | |
[14:41:17] | nichos: | oops, wrong window:) |
[14:41:47] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv-users | |
[14:42:18] | johnnyj (johnnyj!~chatzilla@cpe-173-172-31-183.tx.res.rr.com) has joined #mythtv-users | |
[14:44:11] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has quit (Ping timeout: 276 seconds) | |
[14:44:29] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has joined #mythtv-users | |
[14:44:31] | johd (johd!~johd@dyn167060.wlan.jku.at) has quit (Quit: Leaving) | |
[14:47:22] | PointyPumper (PointyPumper!Pintlezz@190.244.90.204) has quit (Ping timeout: 252 seconds) | |
[14:53:50] | ikevin (ikevin!~kevin@je-suis-un.groschibre.com) has quit (Read error: Operation timed out) | |
[14:58:09] | ikevin (ikevin!~kevin@je-suis-un.groschibre.com) has joined #mythtv-users | |
[14:59:38] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv-users | |
[15:02:41] | RDV_Linux (RDV_Linux!~doug@CPE001195554bb4-CM00111a59bd9e.cpe.net.cable.rogers.com) has joined #mythtv-users | |
[15:02:48] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 276 seconds) | |
[15:02:57] | GlemSom (GlemSom!~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk) has joined #mythtv-users | |
[15:13:58] | jya (jya!~avenardj@60-242-40-141.static.tpgi.com.au) has joined #mythtv-users | |
[15:20:23] | klk (klk!~klk@76.211.128.200) has joined #mythtv-users | |
[15:24:11] | beatbreaker (beatbreaker!~tang@c211-30-15-33.rivrw2.nsw.optusnet.com.au) has quit (Quit: Leaving) | |
[15:28:06] | npm (npm!~npm@cpe-76-169-12-237.socal.res.rr.com) has quit (Quit: Leaving.) | |
[15:29:34] | nichos (nichos!~n00182937@c-98-231-118-122.hsd1.fl.comcast.net) has quit (Quit: nichos) | |
[15:33:19] | mag0o: | occasional prebuffering pauses causing playback to fail sometimes so far |
[15:33:25] | npm (npm!~npm@cpe-76-169-12-237.socal.res.rr.com) has joined #mythtv-users | |
[15:34:03] | mag0o: | with 'custom' vdpau playback profiles listed here: http://mythtv.org/pipermail/mythtv-users/2010 . . . /278280.html |
[15:34:36] | mag0o: | other than that, it's pretty nice, especially considering the size/price |
[15:40:06] | johnnyj (johnnyj!~chatzilla@cpe-173-172-31-183.tx.res.rr.com) has quit (Ping timeout: 268 seconds) | |
[15:44:22] | nichos (nichos!~n00182937@c-98-231-118-122.hsd1.fl.comcast.net) has joined #mythtv-users | |
[15:44:28] | nichos (nichos!~n00182937@c-98-231-118-122.hsd1.fl.comcast.net) has quit (Client Quit) | |
[15:45:33] | mag0o: | weird, so when the prebuffer pauses start, i can start iptraf on the backend to monitor the interface, and the prebuffers clear up |
[15:48:59] | mag0o: | hmm, so, it's not actually running iptraf that's clearing up the prebuffer pauses |
[15:49:13] | mag0o: | just using the ssh console on the backend clears up the pauses |
[15:49:28] | mag0o: | approx 1 min apart |
[15:57:42] | mag0o: | ooo, backend 100/full frontend 100/half |
[15:58:51] | tassbur (tassbur!~tassbur@83.53.250.186) has quit (Quit: Konversation terminated!) | |
[16:02:10] | klk (klk!~klk@76.211.128.200) has quit (Ping timeout: 264 seconds) | |
[16:05:26] | christoph_ (christoph_!~chatzilla@dslb-094-222-043-114.pools.arcor-ip.net) has joined #mythtv-users | |
[16:05:43] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has quit (Ping timeout: 260 seconds) | |
[16:06:48] | christoph_: | I get image corruption for serveral tv channels and I don't get any EIT data (KNC one TV Station DVB-S, Ubuntu 9.10) – any idea what could be wrong? |
[16:07:06] | christoph_: | other channels work well (but still no EIT data) |
[16:07:28] | christoph_: | and there is no DECT phone in the room |
[16:08:47] | christoph_: | and... |
[16:08:56] | christoph_: | 2010-04–17 18:00:44.855 Expiring 6 MBytes for 13020 @ Sa. Apr 17 17:58:24 2010 => Unknown |
[16:08:58] | christoph_: | 2010-04–17 18:04:38.461 DVBSM(/dev/dvb/adapter0/frontend0), Warning: Can not count Uncorrected Blocks |
[16:09:21] | christoph_: | tv card damaged? driver issue? |
[16:10:27] | hadees (hadees!~hadees@216-188-225-151.dyn.grandenetworks.net) has joined #mythtv-users | |
[16:10:35] | stoffel (stoffel!~quassel@p57B4CF88.dip.t-dialin.net) has quit (Ping timeout: 246 seconds) | |
[16:11:24] | Dave123-road (Dave123-road!~dave@cpe-74-69-108-236.rochester.res.rr.com) has joined #mythtv-users | |
[16:12:11] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has joined #mythtv-users | |
[16:26:46] | mag0o: | forcing frontend to 100/full made it worse :) |
[16:27:56] | andreax (andreax!~andreaz@p57B95627.dip.t-dialin.net) has joined #mythtv-users | |
[16:30:29] | Defense (Defense!~jepz@d137127.adsl.hansenet.de) has quit (Remote host closed the connection) | |
[16:31:17] | mag0o: | ...and now no prebuffer pauses... |
[16:36:40] | gregl (gregl!~greg@cpe-69-204-191-116.nycap.res.rr.com) has quit (Quit: Leaving) | |
[16:36:51] | gbee: | christoph_: I had a DVB-S card which was unable to tune a particular frequency (channel) without severe signal errors where another card had no problems |
[16:37:37] | wagnerrp: | ThisOtherGuy: you can change those columns by reprogramming mythweb |
[16:37:37] | gbee: | it was a cheap Satelco piece of c**p |
[16:37:48] | christoph_: | crap... "V4L/DVB: saa7146: IRQF_DISABLED causes only trouble" |
[16:43:07] | christoph_ (christoph_!~chatzilla@dslb-094-222-043-114.pools.arcor-ip.net) has quit (Remote host closed the connection) | |
[16:45:40] | Brad-D: | hey guys, i recently had a hard drive pooch on me. Is there a way to automatically remove all the entries from the recordings database for files that don't exist anymore? |
[16:47:34] | bjd: | not sure, but think myth_find_orphans.pl is what you want |
[16:49:33] | Brad-D: | thanks bljd, i will check it out |
[16:55:11] | jya (jya!~avenardj@60-242-40-141.static.tpgi.com.au) has quit (Quit: jya) | |
[16:55:45] | christoph_ (christoph_!~chatzilla@dslb-094-222-043-114.pools.arcor-ip.net) has joined #mythtv-users | |
[16:59:53] | fleers (fleers!~fleers@cpe-76-93-149-51.san.res.rr.com) has joined #mythtv-users | |
[17:00:51] | christoph_: | hmm no – this wouldn't explain why some channels working without any issues |
[17:00:56] | christoph_: | +are |
[17:02:52] | gregl (gregl!~greg@cpe-69-204-191-116.nycap.res.rr.com) has joined #mythtv-users | |
[17:06:13] | pac0 (pac0!~paco@27.126.221.87.dynamic.jazztel.es) has joined #mythtv-users | |
[17:10:32] | pac0: | looking for drivers... http://www.sveon.com/fichaSTV22.html |
[17:10:45] | pac0: | seems impossible |
[17:12:16] | wagnerrp: | we dont do drivers, see #linuxtv and/or http://linuxtv.org/ |
[17:12:30] | wagnerrp: | pac0: if that uses a well supported chipset, it may be trivial to add support for that device |
[17:14:07] | Dave123-road (Dave123-road!~dave@cpe-74-69-108-236.rochester.res.rr.com) has quit (Quit: Leaving) | |
[17:18:45] | pac0: | thank you |
[17:18:51] | christoph_ (christoph_!~chatzilla@dslb-094-222-043-114.pools.arcor-ip.net) has quit (Quit: ChatZilla 0.9.86 [Firefox 3.5.9/20100402010516]) | |
[17:18:57] | pac0: | i think is good product, with 2 tuners on usb |
[17:18:59] | pac0: | :) |
[17:20:16] | stoffel (stoffel!~quassel@p57B4CF88.dip.t-dialin.net) has joined #mythtv-users | |
[17:20:18] | Mode for #mythtv-users by ChanServ!ChanServ@services. : +v stoffel | |
[17:22:26] | wagnerrp: | yeah, you dont see any dual tuner sticks |
[17:22:32] | wagnerrp: | s/any/many/ |
[17:32:12] | pac0: | ein' |
[17:34:13] | wagnerrp: | i feel so much better now that i know Udo is using 0.23... |
[17:36:11] | hadees (hadees!~hadees@216-188-225-151.dyn.grandenetworks.net) has quit (Ping timeout: 276 seconds) | |
[17:38:47] | RyeBrye (RyeBrye!~ryebrye@67.199.187.50) has quit (Ping timeout: 276 seconds) | |
[17:38:50] | CyberKnet (CyberKnet!~CyberKnet@ip72-213-131-207.ok.ok.cox.net) has joined #mythtv-users | |
[17:41:22] | PointyPumper (PointyPumper!Pintlezz@190.244.90.204) has joined #mythtv-users | |
[17:42:10] | JJ2 (JJ2!~jjensen@jeffjensen.dsl.visi.com) has joined #mythtv-users | |
[17:44:01] | JJ1 (JJ1!~jjensen@jeffjensen.dsl.visi.com) has quit (Ping timeout: 258 seconds) | |
[17:44:23] | leprechau (leprechau!~leprechau@temp4.wavelinx.net) has quit (Ping timeout: 246 seconds) | |
[17:47:35] | gbee: | maybe he'll find some more bugs |
[17:48:14] | jarle: | gbee: you mean that the memory leak is not included in 0.23? :) |
[17:48:18] | ikevin (ikevin!~kevin@je-suis-un.groschibre.com) has quit (Remote host closed the connection) | |
[17:48:30] | wagnerrp: | jarle: we decided to remove that feature |
[17:49:15] | jarle: | wagnerrp: 'bout time to sell some of my memory then... |
[17:50:18] | gbee: | jarle: we hope not, more than one memory leak has been fixed, some serious, some not |
[17:55:52] | Azelphur (Azelphur!~Azelphur@azelphur.com) has quit (Read error: Connection reset by peer) | |
[17:58:06] | hadees (hadees!~hadees@216-188-225-151.dyn.grandenetworks.net) has joined #mythtv-users | |
[17:59:50] | Azelphur (Azelphur!~Azelphur@azelphur.com) has joined #mythtv-users | |
[18:00:35] | GrahamIRC (GrahamIRC!~GrahamIRC@93-97-162-128.zone5.bethere.co.uk) has joined #mythtv-users | |
[18:01:15] | ctmjr (ctmjr!~chuck@unaffiliated/ctmjr) has joined #mythtv-users | |
[18:01:45] | rabotnik (rabotnik!~rabotnik@unaffiliated/rabotnik) has joined #mythtv-users | |
[18:02:51] | pac0 (pac0!~paco@27.126.221.87.dynamic.jazztel.es) has quit (Ping timeout: 276 seconds) | |
[18:09:41] | jvs (jvs!~jvs@90.146.65.36) has joined #mythtv-users | |
[18:15:24] | ctmjr (ctmjr!~chuck@unaffiliated/ctmjr) has quit (Quit: Leaving) | |
[18:21:58] | [R] ([R]!~rbox@unaffiliated/rbox) has joined #mythtv-users | |
[18:23:46] | custom__ (custom__!~custom@173.156.212.153) has quit (Ping timeout: 264 seconds) | |
[18:27:39] | rabotnik (rabotnik!~rabotnik@unaffiliated/rabotnik) has quit (Quit: Leaving) | |
[18:29:54] | jvs (jvs!~jvs@90.146.65.36) has quit (Quit: Leaving) | |
[18:37:09] | ikevin (ikevin!~kevin@je-suis-un.groschibre.com) has joined #mythtv-users | |
[18:43:56] | johd (johd!~johd@90.146.65.36) has joined #mythtv-users | |
[18:54:41] | Cap_J_L_Picard: | wagnerrp: I wouldn't thought a USB stick could be dual tuner? |
[18:55:22] | Cap_J_L_Picard: | same reason one can't run two webcam video feeds off the same USB hub simultaneously. |
[18:55:38] | Cap_J_L_Picard: | Just not enough bandwidth. |
[18:55:49] | Cap_J_L_Picard: | need them on seperate root hubs. |
[18:56:10] | javatexan (javatexan!~mia@rrcs-71-40-238-191.sw.biz.rr.com) has joined #mythtv-users | |
[18:57:02] | Cap_J_L_Picard: | until they make USB3 ones that is. |
[18:59:01] | CyberKnet (CyberKnet!~CyberKnet@ip72-213-131-207.ok.ok.cox.net) has quit () | |
[19:02:43] | jamesd_laptop (jamesd_laptop!~jamesd@adsl-68-254-161-91.dsl.milwwi.ameritech.net) has quit (Read error: Connection reset by peer) | |
[19:03:15] | jamesd_laptop (jamesd_laptop!~jamesd@adsl-68-254-161-91.dsl.milwwi.ameritech.net) has joined #mythtv-users | |
[19:06:43] | jamesd_laptop (jamesd_laptop!~jamesd@adsl-68-254-161-91.dsl.milwwi.ameritech.net) has quit (Read error: Connection reset by peer) | |
[19:07:15] | jamesd_laptop (jamesd_laptop!~jamesd@adsl-68-254-161-91.dsl.milwwi.ameritech.net) has joined #mythtv-users | |
[19:10:06] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has joined #mythtv-users | |
[19:14:07] | javatexan (javatexan!~mia@rrcs-71-40-238-191.sw.biz.rr.com) has quit (Quit: Leaving.) | |
[19:19:34] | grndslm (grndslm!~grndslm@174-126-14-4.cpe.cableone.net) has joined #mythtv-users | |
[19:20:11] | dansushi (dansushi!~dan@147.4.211.193) has quit (Remote host closed the connection) | |
[19:23:24] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has quit (Quit: Lost terminal) | |
[19:24:21] | dansushi (dansushi!~dan@147.4.211.193) has joined #mythtv-users | |
[19:26:45] | wagnerrp: | Cap_J_L_Picard: digital tuners and mpeg encoders use relatively little bandwidth |
[19:26:50] | wagnerrp: | a couple MB/s maximum |
[19:30:24] | Cap_J_L_Picard: | there is only so much compression one can have. |
[19:30:56] | wagnerrp: | mpeg encoders only run to 12mbps, and are usually only 4–6mbps |
[19:31:13] | wagnerrp: | digital tuners max out at 38mbps (for US digital cable) |
[19:31:30] | wagnerrp: | compare that to the 480mbps theoretical for USB |
[19:31:55] | Cap_J_L_Picard: | 480Mbps burst maximum... |
[19:32:04] | wagnerrp: | 480mbps maximum |
[19:32:05] | Cap_J_L_Picard: | that Burst is important... |
[19:32:08] | wagnerrp: | nothing to do with burst |
[19:32:19] | Cap_J_L_Picard: | USB can not maintain it... |
[19:32:28] | Cap_J_L_Picard: | it can only do it in bursts... |
[19:32:31] | wagnerrp: | simply because usb sucks |
[19:32:36] | wagnerrp: | but usb is not burstable |
[19:32:52] | ** TheAsp is about to burst ** | |
[19:34:45] | Cap_J_L_Picard: | USB also has to share it across all devices on the bus... |
[19:35:08] | wagnerrp: | sure, but unless youre using a hub, thats generally only two devices |
[19:35:49] | Cap_J_L_Picard: | urm, most onboard motherboard is a hub per 4 ports... |
[19:36:43] | wagnerrp: | regardless, there is plenty of bandwidth for several tuners over USB |
[19:37:02] | justinh: | wth? V is on Sky Three NOW |
[19:37:50] | justinh: | so I hit record, started watching it since the guide said it was the remake of the classic 1983 series.. thought NAH... but on playback... sure is the new one. Half an hour in. And with a mysterious 'free pass' DOG |
[19:38:10] | Cap_J_L_Picard: | one USB root hub on laptops, powering the touchpad on the fourth... |
[19:39:03] | justinh: | bah. ****ing evil teasing buggers. http://www1.sky.com/freepass/ .. your first hit is free. |
[19:40:51] | lyricnz (lyricnz!~simonrobe@conference/drupalcon/x-gpybuwxoylryjpua) has joined #mythtv-users | |
[19:46:10] | Goga777 (Goga777!~Goga777@shpd-95-53-184-50.vologda.ru) has quit (Remote host closed the connection) | |
[19:46:21] | johd (johd!~johd@90.146.65.36) has quit (Remote host closed the connection) | |
[19:49:03] | Heliwr (Heliwr!~Heliwr@pdpc/supporter/student/heliwr) has quit (Quit: I've got to get out of this place, if it's the last thing I ever do...) | |
[19:52:00] | abqjp (abqjp!~abqjp@174-28-127-44.albq.qwest.net) has joined #mythtv-users | |
[19:57:56] | johnnyj (johnnyj!~chatzilla@cpe-173-172-31-183.tx.res.rr.com) has joined #mythtv-users | |
[19:59:30] | gbee: | damn, missed it |
[20:00:18] | gbee: | well I'll catch the free ep of The Pacific I guess |
[20:01:56] | gbee: | or I would except it conflicts with stuff I'd rather have |
[20:03:15] | gbee: | this is where having a second backend comes in handy |
[20:08:23] | justinh: | just makes my hatred for Sky deepen |
[20:09:01] | justinh: | wouldn't care so much if you could really pick & choose the channels you wanted in packages without getting cruft.. and pay less |
[20:09:27] | justinh: | I don't think even 5 premium shows are worth £25 a month |
[20:09:45] | wagnerrp: | you must not get ESPN then |
[20:10:29] | wagnerrp: | between the cable channels, and espn360.com, i probably pay over $15/mo |
[20:10:31] | Heliwr (Heliwr!~Heliwr@pdpc/supporter/student/heliwr) has joined #mythtv-users | |
[20:10:36] | wagnerrp: | and i rarely even use either |
[20:11:34] | justinh: | there's only really 24 on Sky One, and now V.. so say 2 shows for £20 a month or whatever the package costs |
[20:11:52] | justinh: | and IIRC the scifi channel is still only 4:3 here |
[20:12:16] | gbee: | I'm not really interested in V tbh |
[20:12:42] | gbee: | I'd have liked to see The Pacific, but I won't pay Sky a penny on Principle |
[20:12:57] | ThisOtherGuy: | Hi all – can anyone help me with a mythweb question? |
[20:13:18] | justinh: | ThisOtherGuy: ask & you shall see |
[20:13:25] | gbee: | and yes, technically I do get Sky One via Virgin, but I'm not setup to record from the Virgin STB |
[20:13:50] | ThisOtherGuy: | Is there any way to change the default columns on the Upcoming Recordings page? |
[20:14:04] | justinh: | ThisOtherGuy: not without editing files there ain't AFAIK |
[20:14:15] | ThisOtherGuy: | I'm ok with editing files |
[20:14:19] | gbee: | I notice that Sky Three is showing a Dexter episode tomorrow, guess that's another show they poached from a Terrestrial channel |
[20:14:21] | johnnyj (johnnyj!~chatzilla@cpe-173-172-31-183.tx.res.rr.com) has quit (Quit: ChatZilla 0.9.86 [Firefox 3.5.9/20100401213457]) | |
[20:14:34] | wagnerrp: | ThisOtherGuy: pretty sure i mentioned you would have to patch mythweb to do that a while back |
[20:14:50] | wagnerrp: | yeah, about four hours ago |
[20:15:09] | ThisOtherGuy: | doh – lemme search – sorry |
[20:15:28] | wagnerrp: | no reason to search |
[20:15:36] | wagnerrp: | all i said was you have to reprogram mythweb |
[20:16:33] | ThisOtherGuy: | any pointers on where to look? |
[20:16:51] | wagnerrp: | do you know PHP? |
[20:17:24] | ThisOtherGuy: | I'm not an expert but I'm ok |
[20:18:22] | andreax1 (andreax1!~andreaz@p57B964C7.dip.t-dialin.net) has joined #mythtv-users | |
[20:18:23] | ThisOtherGuy: | I think I found it: /mythplugins/mythweb/modules/tv/tmpl/default/upcoming.php |
[20:18:32] | wagnerrp: | sounds about right |
[20:18:42] | ThisOtherGuy: | k – I'll play thanks |
[20:20:14] | andreax (andreax!~andreaz@p57B95627.dip.t-dialin.net) has quit (Ping timeout: 240 seconds) | |
[20:23:33] | LabMonkey (LabMonkey!~bogart@ppp-70-254-42-18.dsl.lgvwtx.swbell.net) has quit (Read error: No route to host) | |
[20:27:43] | Elv13 (Elv13!~lepagee@modemcable227.96-200-24.mc.videotron.ca) has joined #mythtv-users | |
[20:28:05] | Elv13: | Hi, I have bought a tv@nawhere card using a saa7131 chip (I was thinking it would be a cx23881). The problem is, I already have a saa7134 based card. As those card have to be loaded with module parameter to work, how can I have two of these? |
[20:28:12] | Elv13: | Does I really have to duplicate the kernel code? or is there a better way to match the card |
[20:29:39] | ThisOtherGuy: | yup- that did it – thanks |
[20:30:25] | gbee: | Elv13: the guys in #linuxtv might have a clue |
[20:30:43] | Elv13: | I posted there too, but thanks anyway |
[20:32:22] | GNU\colossus (GNU\colossus!anonymous@truschnigg.info) has joined #mythtv-users | |
[20:32:35] | GNU\colossus: | hi there, people :) |
[20:33:51] | justinh: | where's Guardian when you need him? |
[20:42:33] | lyricnz (lyricnz!~simonrobe@conference/drupalcon/x-gpybuwxoylryjpua) has quit (Quit: lyricnz) | |
[20:42:42] | justinh: | OMG. wrongness doesn't even get a look in http://mythtv.org/wiki/Mythadder.py |
[20:43:08] | wagnerrp: | well the concept is sensible |
[20:43:19] | wagnerrp: | im rewriting it to use the bindings, rather than SQL |
[20:44:10] | justinh: | surely better to mount to symlinked dirs instead I'd have thought, then browse as files? |
[20:44:26] | wagnerrp: | eh? |
[20:44:43] | GNU\colossus: | which distro would you recommend to run mythtv (front- and backend) on? are mythbuntu and mythdora any good? |
[20:44:50] | wagnerrp: | its not for browse mode, its for full metadata mode |
[20:45:02] | justinh: | without messing around with the database I mean. inserting stuff & pulling it out... it's just... eew |
[20:45:21] | wagnerrp: | right, which is why im working to make it use the bindings, rather than raw SQL |
[20:45:37] | justinh: | GNU\colossus: nobody will recommend a distro here. use whatever you feel comfortable using |
[20:46:07] | justinh: | wagnerrp: still though.. seems a bit messy |
[20:46:21] | justinh: | GNU\colossus: everybody making mythtv based distros strives to be 'good' |
[20:46:36] | justinh: | and FWIW you forgot about LinHES |
[20:46:44] | gbee: | GNU\colossus: just be sensible, CentOS etc aren't a good choice for a media centre |
[20:47:01] | wagnerrp: | justinh: on second thought... im wondering if this would be a good opportunity to implement Capt'Ms xml format |
[20:47:37] | justinh: | wagnerrp: could be. be even better (okay I admit but a cow to actually *do* ) to extend mythvideo to do this sort of thing properly |
[20:47:46] | justinh: | mythvideo/storagegroups |
[20:47:49] | pizzledizzle (pizzledizzle!~pizdets@pool-98-116-202-61.nycmny.fios.verizon.net) has joined #mythtv-users | |
[20:48:00] | wagnerrp: | justinh: waiting on MythFileSystemWatcher for that |
[20:48:05] | justinh: | heh |
[20:48:07] | gbee: | justinh: that's where the filesystemwatcher stuff comes in |
[20:48:43] | justinh: | it's not that I'm against any of these cool tricks.. far from it.. it's just I see the stuff about mangling the db & think of poor users whose db gets wrecked |
[20:49:06] | wagnerrp: | well its only adding and removing from videometadata |
[20:49:14] | wagnerrp: | worst case, you flush the table and rescan |
[20:49:52] | justinh: | in this case yeah |
[20:50:12] | justinh: | but there's a worrying trend for scripts to do this kind of thing |
[20:50:32] | wagnerrp: | which is why the bindings exist |
[20:50:51] | wagnerrp: | at the very least, it sanitizes the database input, and makes sure you dont screw anything up too bad |
[20:51:03] | wagnerrp: | of course there is plenty you can do wrong just by adding and deleting entries |
[20:51:05] | justinh: | imagine the kind of mess somebody'd end up with if mythicallibrarian goes pear shapes... |
[20:51:41] | justinh: | wagnerrp: well, good on yer for making the script do it better anyway. |
[20:51:56] | superdump (superdump!~rob@unaffiliated/superdump) has joined #mythtv-users | |
[20:55:20] | lyricnz (lyricnz!~simonrobe@conference/drupalcon/x-qpmwhcvatewcrxlt) has joined #mythtv-users | |
[20:55:38] | LabMonkey (LabMonkey!~bogart@ppp-70-254-42-18.dsl.lgvwtx.swbell.net) has joined #mythtv-users | |
[20:56:48] | bjd: | did that EIT scanning issue that prevented mythwelcome from shutting down still exist? |
[20:56:54] | bjd: | s/did/does |
[20:57:55] | johd (johd!~johd@90.146.65.36) has joined #mythtv-users | |
[20:58:27] | wagnerrp: | mythwelcome doesnt shut down |
[20:58:43] | wagnerrp: | mythwelcome simply disconnects from the backend |
[20:58:50] | wagnerrp: | allowing the backend to shut down on its own |
[21:00:05] | beppo_ (beppo_!~b3pp0@p57A4E87B.dip.t-dialin.net) has joined #mythtv-users | |
[21:00:20] | gbee: | bjd: no-one has submitted a patch to stop EIT gathering and therefore allow the backend to shutdown |
[21:00:57] | johd (johd!~johd@90.146.65.36) has quit (Client Quit) | |
[21:03:32] | bep_ (bep_!~b3pp0@unaffiliated/bep/x-392433) has quit (Ping timeout: 276 seconds) | |
[21:03:51] | johnnyj (johnnyj!~johnnyj@cpe-173-172-31-183.tx.res.rr.com) has joined #mythtv-users | |
[21:07:04] | johnnyj (johnnyj!~johnnyj@cpe-173-172-31-183.tx.res.rr.com) has quit (Client Quit) | |
[21:07:25] | johnnyj (johnnyj!~johnnyj@cpe-173-172-31-183.tx.res.rr.com) has joined #mythtv-users | |
[21:10:48] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Remote host closed the connection) | |
[21:13:56] | KraMer (KraMer!~mark@2002:46f0:c2c9:0:215:f2ff:fef4:4288) has joined #mythtv-users | |
[21:14:51] | oobe (oobe!~thingo@insidiousramblings.com) has quit (Ping timeout: 248 seconds) | |
[21:23:12] | johnnyj (johnnyj!~johnnyj@cpe-173-172-31-183.tx.res.rr.com) has quit (Quit: johnnyj) | |
[21:23:52] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Quit: Quit) | |
[21:27:10] | oobe (oobe!proxy@aubry.athnex.com) has joined #mythtv-users | |
[21:31:49] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has joined #mythtv-users | |
[21:33:53] | GlemSom (GlemSom!~glemsom@0x5da34bca.cpe.ge-1-1-0-1105.sdnqu1.customer.tele.dk) has quit (Quit: Leaving) | |
[21:33:53] | stoffel (stoffel!~quassel@p57B4CF88.dip.t-dialin.net) has quit (Remote host closed the connection) | |
[21:35:35] | RDV_Linux (RDV_Linux!~doug@CPE001195554bb4-CM00111a59bd9e.cpe.net.cable.rogers.com) has quit (Remote host closed the connection) | |
[21:42:17] | ctmjr (ctmjr!~chuck@unaffiliated/ctmjr) has joined #mythtv-users | |
[21:43:33] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has quit (Quit: ...) | |
[21:43:49] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has joined #mythtv-users | |
[21:45:35] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has quit (Client Quit) | |
[21:45:43] | bjd: | ok, ta gbee |
[21:47:40] | npm: | is there a way to get closed captioning from /dev/video* written to a file w/ a timestamp of when the caption happened (aka something myth could do in background, then trigger recording on closed captioned keyword) |
[21:48:35] | beppo_ (beppo_!~b3pp0@p57A4E87B.dip.t-dialin.net) has quit (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com )) | |
[21:49:35] | ** npm finds http://www.mjmwired.net/kernel/Documentation/ . . . ced-vbi.xml1 ** | |
[21:50:51] | benomatic (benomatic!~ben@cpe-67-241-46-191.twcny.res.rr.com) has joined #mythtv-users | |
[21:51:47] | andreax1 (andreax1!~andreaz@p57B964C7.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[21:54:07] | gbee: | possibly, although not many people are going to want to work on it, especially not for analogue |
[21:54:20] | gbee: | and it's only going to work for a single channel at a time |
[21:54:41] | gbee: | so the use cases are slim to non-existant |
[21:55:42] | zupol (zupol!~mythtv@78-105-15-213.zone3.bethere.co.uk) has quit (Read error: No route to host) | |
[21:56:11] | Elv13 (Elv13!~lepagee@modemcable227.96-200-24.mc.videotron.ca) has quit (Ping timeout: 276 seconds) | |
[22:00:04] | npm: | finds http://ivtvdriver.org/pipermail/ivtv-users/20 . . . /009342.html |
[22:00:14] | cdpuk (cdpuk!~chris@cdpuk.cdp.me.uk) has quit (Read error: Connection reset by peer) | |
[22:01:20] | zupol (zupol!~mythtv@78-105-15-213.zone3.bethere.co.uk) has joined #mythtv-users | |
[22:01:26] | npm: | it's better to record a stream of text out of a single channel and start recording video when it's time |
[22:01:57] | npm: | as opposed to record video all the time and set markers based on the captions or caption + timing |
[22:02:20] | npm: | same idea for digital ... doesn't need to be tied to analog |
[22:03:35] | gbee: | depends on country, text captions are AFAIK only used in the US with digital, elsewhere it's image based |
[22:06:52] | npm: | yep i'm looking @ http://www.gossamer-threads.com/lists/mythtv/users/365423 which suggests http://ccextractor.sourceforge.net./ |
[22:14:03] | revilootneg (revilootneg!~oliver@pool-202-65-198-89.dbd-ipconnect.net) has quit (Quit: leaving) | |
[22:15:57] | superdump (superdump!~rob@unaffiliated/superdump) has quit (Quit: WeeChat 0.3.2-rc1) | |
[22:16:15] | grumpydevil (grumpydevil!~rudy@2001:610:73e:0:225:64ff:fea4:928e) has quit (Read error: Operation timed out) | |
[22:19:15] | lyricnz (lyricnz!~simonrobe@conference/drupalcon/x-qpmwhcvatewcrxlt) has quit (Quit: lyricnz) | |
[22:19:22] | crankharder (crankharder!~crankhard@ip68-100-2-225.dc.dc.cox.net) has joined #mythtv-users | |
[22:20:21] | crankharder: | is it possible to install mythserver in a KVM, that is, without X? |
[22:20:29] | crankharder: | or do I have to have X in order to run mythtv-setup? |
[22:20:49] | [R]: | um... the point of using virtualization is... |
[22:21:16] | kormoc: | crankharder: you can use ssh to forward x to another box |
[22:21:44] | crankharder: | hrm, good idea, thanx |
[22:26:44] | inordkuo (inordkuo!~inorkuo@216.237.200.144) has quit (Quit: Leaving.) | |
[22:28:47] | wagnerrp: | [R]++ |
[22:29:06] | lyricnz (lyricnz!~simonrobe@conference/drupalcon/x-lszkrpppfexjwarr) has joined #mythtv-users | |
[22:29:37] | [R]: | wagnerrp: i think i'm gonna upgrade to 23 |
[22:33:19] | lyricnz (lyricnz!~simonrobe@conference/drupalcon/x-lszkrpppfexjwarr) has quit (Client Quit) | |
[22:35:32] | rushfan (rushfan!~rushfan@cpe-98-155-86-34.san.res.rr.com) has joined #mythtv-users | |
[22:56:18] | zupol (zupol!~mythtv@78-105-15-213.zone3.bethere.co.uk) has quit (Read error: Connection reset by peer) | |
[22:58:05] | zupol (zupol!~mythtv@78-105-15-213.zone3.bethere.co.uk) has joined #mythtv-users | |
[23:10:41] | paperclip_ (paperclip_!~paperclip@ip72-204-175-205.no.no.cox.net) has quit (Remote host closed the connection) | |
[23:11:36] | Wiiilmaa (Wiiilmaa!~wilmerj@p549FB23B.dip.t-dialin.net) has quit (Quit: Verlassend) | |
[23:15:51] | javatexan (javatexan!~mia@rrcs-71-40-238-191.sw.biz.rr.com) has joined #mythtv-users | |
[23:17:38] | inordkuo (inordkuo!~inorkuo@adsl-177-182-134.int.bellsouth.net) has joined #mythtv-users | |
[23:20:29] | bmidgley1 (bmidgley1!~bmidgley@c-76-27-89-77.hsd1.ut.comcast.net) has joined #mythtv-users | |
[23:22:24] | bmidgley1: | scte65scan crashes when I tell it to scan qam256, argh |
[23:35:29] | ctmjr (ctmjr!~chuck@unaffiliated/ctmjr) has quit (Quit: Leaving) | |
[23:44:24] | bmidgley1 (bmidgley1!~bmidgley@c-76-27-89-77.hsd1.ut.comcast.net) has quit (Quit: Leaving.) | |
[23:56:49] | bmidgley1 (bmidgley1!~bmidgley@c-76-27-89-77.hsd1.ut.comcast.net) has joined #mythtv-users | |
[23:57:23] | Wicked (Wicked!~zero@unaffiliated/blazed) has quit (Quit: You should have never seen this quit message!) |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.