MythLogBot@irc.freenode.net :: #mythtv

Daily chat history

Current users (100):

abqjp, alan`, aloril, Anduin, anykey_, AriX, asphere, beata__, Beirdo, bestis_, brfransen, caelor, Captain_Murdoch, cattelan, cdev, Chutt, clever_, coling, Computer_Czar, Cougar, dagar, dashcloud, Dave123, davide, dekarl1, DJDan, dlblog, dserban, duerF, eharris, elmojo, elvum, ericpersson, foobum, foxbuntu, gbutters, ghoti, Gibby_away, gigem, gregL, GreyFoxx, grokky_, hads, highzeth, iamlindoro, ikonia, J-e-f-f-A, j-rod|afk, jafa, jams_, jannau, jarle, joe___, jpabq, jpabq-, jpharvey, jstenback, justinh, justpaul, jwhite, kc, kenni, Kevin`, kha, knightr, kormoc, kurre, laga_, len, lofidellity, mag0o, markk, mrand, MythLogBot, nutron, ozatomic, pheld, PointyPumper, poptix, Prost, purserj, RDV_Linux, reynaldo, robert____, rooaus, skd5aner, sphery, Splat2, stuarta, stuartm, superm1, sutula, tgm4883, ThisNewGuy, tomimo, tris, wagnerrp, xris, ybot, _charly_
Tuesday, November 23rd, 2010, 00:02 UTC
[00:02:05] markk: elmojo: not sure what you intend to do with the frame rate change clip – but it would be nice to figure out why the frame rate change isn't detected
[00:06:49] elmojo: markk: I was hoping you knew :)
[00:07:47] elmojo: I'm going to look at adding frame rate detection using timecodes between frames
[00:07:59] abqjp (abqjp!~abqjp@97-119-171-65.albq.qwest.net) has quit (Quit: abqjp)
[00:10:22] markk: elmojo: I've never really looked at mpeg2 specs etc – so I have no idea what is meant to happen. might be worth digging in AvFormatDecoder::MpegPreProcessPkt to see if we pick up any change at all
[00:11:38] elmojo: ok, I'm hoping to get a chance soon
[00:12:52] jya: isn't the rate inside the ffmpeg AVpacket structure?
[00:14:12] Beirdo: I know that for MPEG2-PS, I shortcutted it, not detected, but I don't recall how I had it for -TS (which that clip is).
[00:14:26] Beirdo: if I didn't take it from the packets, I should have.
[00:14:53] Beirdo: but.. the packets might even be incorrect, maybe the timestamp is a better method?
[00:16:31] jya: how does mplayer play those?
[00:16:56] Beirdo: it detects a change. I didn't dig into their code
[00:21:20] markk (markk!~mark@cm69.delta193.maxonline.com.sg) has quit (Ping timeout: 245 seconds)
[00:34:11] markk (markk!~mark@srv120.dedicated.netrino.co.uk) has joined #mythtv
[00:36:55] natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Read error: Operation timed out)
[00:38:15] gregL (gregL!~greg@cpe-74-76-125-87.nycap.res.rr.com) has quit (Quit: Leaving)
[00:41:55] gregL (gregL!~greg@74.76.125.87) has joined #mythtv
[00:46:57] BadSector (BadSector!~mel@cpe-184-59-88-26.cinci.res.rr.com) has quit (Remote host closed the connection)
[00:48:10] elmojo: we can use average frame rate for everything.... in addition we can store the frame rate and playback time for every keyframe in a position map so that when we seek we know exactly where we are with respect to time but that is quite invasive since everything currently is based around frame rates and frame numbers and not actual time
[00:50:08] elmojo: I think I'd rather keep the current scheme of frame rates and frame numbers and give up perfection
[00:53:32] markk: elmojo: maybe we could just flag up in the OSD that the time is estimated/may be wrong – i.e. if avg frame rate differs from actual current frame rate
[01:09:04] kormoc is now known as kormoc_afk
[01:15:55] MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[01:19:20] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 276 seconds)
[01:29:39] davide (davide!~gigem@cpe-76-187-29-95.tx.res.rr.com) has quit (Remote host closed the connection)
[01:30:24] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has joined #mythtv
[01:31:57] gigem_ (gigem_!~gigem@cpe-76-187-29-95.tx.res.rr.com) has joined #mythtv
[01:32:13] gigem_ is now known as davide
[01:44:50] gigem_ (gigem_!~david@host137.12.intrusion.com) has joined #mythtv
[01:45:33] xris (xris!~xris@xris.forevermore.net) has quit (Quit: Terminated with extreme prejudice - dircproxy 1.2.0)
[01:45:43] xris (xris!~xris@xris.forevermore.net) has joined #mythtv
[01:48:53] gigem (gigem!~david@host137.12.intrusion.com) has quit (Ping timeout: 245 seconds)
[01:57:31] ybot (ybot!~quassel@61.14.141.36) has quit (Read error: Connection reset by peer)
[01:59:15] ybot (ybot!~quassel@61.14.141.36) has joined #mythtv
[02:07:52] kormoc_afk is now known as kormoc
[02:08:01] jya: how do you do if to fix a bug in 0.24-fixes , the only way to do so is modify libmyth and the AudioOutput class with a public member?
[02:08:46] jya: is bumping the binary API version okay ?
[02:09:15] iamlindoro: IT seems like that should be fine, since it doesn't disrupt communication between dissimilar myth systems
[02:09:34] iamlindoro: ie, the library version only affects myth within that single system, and they would need to update the whole thing anyway
[02:10:29] jya: not touching the backend or the protocol version. Just that I need libmythtv calls a new API in libmyth
[02:10:54] jya: so only require to recompile mythtv and the plugins
[02:10:59] iamlindoro: yeah, that's what I'm saying-- since the changes are confined to the individual system, it should be fine IMO
[02:11:26] jya: I'm actually wonder how that things ever worked...
[02:12:07] jya: hum.. I see. so myth was always decoding the audio, and re-encoded it to AC3 in one go
[02:15:08] jya: if we were to tag 0.24.1, can we make change requiring new translations ?
[02:15:24] jya: would be a pity to have some new improvements only in 0.25
[02:15:57] jya: in particular, I'm referring to changeset r27318
[02:16:02] knightr: jya, it never stoppped anybody from doing it in the past...
[02:16:22] knightr: jya, if somebody submit a translation update against fixes I would commit it...
[02:16:42] jya: danielk was against a change prior to 0.24 because it would require a new translation.
[02:17:15] knightr: jya, because we were in string freeze and 0.24 hadn't been released I believe...
[02:17:19] jya: though we were in feature freeze
[02:17:23] jya: that's right
[02:18:21] knightr: jya, if somebody submits a translation update done correctly against 0.24 I'm willing to commit it and I'm pretty sure kenni would too...
[02:19:20] jya: ok.. that's good. Because many of the trouble reports I've seen are related to misunderstanding that LPCM setting, so dumbing it down seem like a good idea to me
[02:19:42] knightr: (correctly meaning 0.24 is used as the source of the strings or if it's from trunk the obsolete haven't been removed and marked as such...)
[02:19:59] jya: well, it's a backport
[02:20:04] knightr: s/obsolete/obosoletes...
[02:20:57] knightr: jya, not necessarily on the translation side of things though but if I get something done against 0.24 I'm willing to commit...
[02:35:58] mrguitar (mrguitar!~mrguitar@72-48-199-12.dyn.grandenetworks.net) has joined #mythtv
[03:10:07] Dave123-road (Dave123-road!~dave@cpe-74-74-222-96.rochester.res.rr.com) has joined #mythtv
[03:48:57] markk (markk!~mark@srv120.dedicated.netrino.co.uk) has quit (Ping timeout: 250 seconds)
[04:06:04] markk (markk!~mark@cm69.delta193.maxonline.com.sg) has joined #mythtv
[04:29:40] Suit_Of_Sables (Suit_Of_Sables!~ennui@pool-72-87-180-236.lsanca.btas.verizon.net) has joined #mythtv
[04:43:12] mrguitar (mrguitar!~mrguitar@72-48-199-12.dyn.grandenetworks.net) has left #mythtv ("Konversation terminated!")
[04:57:07] Suit_Of_Sables: can one capture directly to H.264 from US HDTV? Or is all HDTV in the states MPEG-2? :/
[04:57:27] sphery: Suit_Of_Sables: /topic (you want #mythtv-users )
[04:59:55] Suit_Of_Sables: sphery: Thank you, I apologize for my idiocy
[05:12:27] davide (davide!~gigem@cpe-76-187-29-95.tx.res.rr.com) has quit (Remote host closed the connection)
[05:15:11] gigem (gigem!~gigem@cpe-76-187-29-95.tx.res.rr.com) has joined #mythtv
[05:15:16] gigem is now known as davide
[05:17:32] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[05:19:36] MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds)
[05:35:29] ghoti (ghoti!~paul@74-51-38-192.telnetcommunications.com) has quit (Ping timeout: 255 seconds)
[05:41:19] ghoti (ghoti!~paul@74-51-38-192.telnetcommunications.com) has joined #mythtv
[06:06:57] elmojo: Beirdo: could you play the variable frame rate video with the following patch -> http://mythtv.pastebin.ca/1999700
[06:07:22] elmojo: this should fix the current time and duration for a recorded show
[06:08:35] elmojo: it doesn't affect the duration for livetv or in-progress recordings.
[06:09:33] elmojo: once livetv and in-progress recordings are dealt with we should be able to finally fix the long standing "duration is wrong" reports
[06:11:08] elmojo: livetv should be good so that just leaves in-progress recordings
[06:13:14] elmojo: cool all we need now is for the recorder class to just return the current recording time – the current start time and we should be good to go
[06:14:30] elmojo: markk: the above patch should take care of the OSD current time and duration issues except for in progress recordings (livetv should be fine)
[06:17:30] markk: elmojo: looks like there's other stuff in there – why would livetv be ok and in progress not?
[06:18:35] elmojo: markk: yeah sorry the patch had some extra cruft that I didn't remember was in there when I started
[06:19:43] elmojo: livetv just uses the actual current recording time and recording end time – but in progress recordings uses frames written divided by the fps
[06:20:57] elmojo: I'd like for the in progress to do the same – I don't see why it would pose a problem
[06:21:24] Beirdo: sure, I'll give that a shot
[06:21:54] elmojo: Beirdo: thanks
[06:27:21] elmojo: Beirdo: I'm not sure if it's necessary or not but we still might want to generate an accurate duration when producing the position map – only reason this would be necessary is if some recorders don't produce videos that FFmpeg can process correctly with regards to duration
[06:29:13] Beirdo: yeah, we'll see :)
[06:29:29] Beirdo: compiling
[06:29:54] elmojo: for the sample you are trying we should be fine
[06:35:05] Beirdo: OK, running
[06:35:17] Beirdo: any particular -v flags I should add?
[06:35:37] Beirdo: the total length looks right :)
[06:37:44] elmojo: Beirdo: it has a position map... right?
[06:37:55] elmojo: does it play to the end correctly?
[06:37:57] MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[06:38:47] Beirdo: let me skip to near the end, but it did before this
[06:39:24] elmojo: the changes should only be cosmetic
[06:40:01] Beirdo: right. I skipped forward to 49mn in
[06:40:09] Beirdo: let's let it play
[06:40:23] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds)
[06:40:31] elmojo: Beirdo: do you have any finished recordings that used to not have the correct duration?
[06:40:47] elmojo: like 1 hour shows with end times like 53 minutes
[06:41:08] Beirdo: not that I know of, but possibly buried in the pile
[06:41:26] elmojo: do you ever record ATSC or QAM?
[06:41:33] Beirdo: ATSC, yes
[06:41:44] Beirdo: both with HDHR and HVR2250
[06:41:58] elmojo: most prime time CBS, ABC, NBC all use repeat frames
[06:42:04] elmojo: so they are usually off
[06:42:15] elmojo: like The Office
[06:42:26] Beirdo: hmm, well, once this is over, I can check some CBS
[06:42:41] elmojo: with out the patch of course :)
[06:42:48] Beirdo: the NBC and ABC I record off DirecTV as the reception on my antenna is borked
[06:43:00] elmojo: ok
[06:43:09] elmojo: I'll catch back up in the morning
[06:43:33] Beirdo: sounds good
[06:51:01] Beirdo: elmojo: yup, plays to the end
[06:51:03] Beirdo: 2010-11–22 22:50:31.500 AFD: display timecode @ [00:59:56.700]
[06:51:14] Beirdo: with the -v playback spewing
[06:51:29] Beirdo: and the display says total length 59:57
[06:51:37] Beirdo: I think 300ms is close enough :)
[06:51:53] Beirdo: now to try a CBS recording
[06:52:47] Goga777 (Goga777!~Goga777@shpd-92-101-150-127.vologda.ru) has joined #mythtv
[06:54:29] Beirdo: 59:55 with the patch
[06:54:37] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[06:55:27] Beirdo: 57:34 without
[06:55:40] Beirdo: wow, I never really noticed, good catch
[06:55:53] Beirdo: the 5s short would likely be tuning delays
[06:57:02] MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 264 seconds)
[06:57:56] dserban_ (dserban_!~dserban@S0106001346beb5f3.ok.shawcable.net) has joined #mythtv
[06:58:37] dserban__ (dserban__!~dserban@S0106001346beb5f3.ok.shawcable.net) has joined #mythtv
[06:59:10] Goga777 (Goga777!~Goga777@shpd-92-101-150-127.vologda.ru) has quit (Remote host closed the connection)
[07:00:29] dserban_ (dserban_!~dserban@S0106001346beb5f3.ok.shawcable.net) has quit (Read error: Operation timed out)
[07:01:48] dserban (dserban!~dserban@S0106001346beb5f3.ok.shawcable.net) has quit (Ping timeout: 245 seconds)
[07:03:07] dserban__ (dserban__!~dserban@S0106001346beb5f3.ok.shawcable.net) has quit (Ping timeout: 240 seconds)
[07:04:45] xris: wagnerrp: ping
[07:07:35] wagnerrp: yeah?
[07:09:04] xris: can you re-signup for jira with just username, not @mythtv.org in the username?
[07:09:17] xris: I can't seem to edit the user.. plus I need someone to test the auth server integration
[07:11:31] wagnerrp: empty page
[07:12:56] xris: for?
[07:13:03] wagnerrp: all of jira
[07:13:20] Beirdo: odd.
[07:13:21] xris: http://mythtv.schedulesdirect.org/jira/secure/Dashboard.jspa
[07:13:34] wagnerrp: oh, not on 8080 any longer?
[07:13:51] xris: not for a long time
[07:13:56] xris: though it should still work
[07:15:45] wagnerrp: done
[07:16:23] xris: cool. it created the user.
[07:16:28] xris: but you still used an email address for the username
[07:16:36] wagnerrp: yes
[07:16:54] xris: just username. no @
[07:17:05] pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv
[07:17:29] wagnerrp: done
[07:17:55] xris: ok. I think I can at least edit your email address from here.
[07:19:01] xris: need a way to mass-create users.
[07:19:08] xris: but at least jira's creating users in crowd
[07:19:14] xris: hmm.. actually.. I'm not sure that's good
[07:19:21] xris: we have a 500 user license.
[07:19:30] xris: was really hoping to let jira manage some, and crowd manage others
[07:19:54] xris: oh well. if we choose to use it, and need more, I don't think there should be trouble to get more
[07:20:38] xris: lol. can't add you to fisheye yet. haven't scanned enough of the repo
[07:21:32] Beirdo: heh
[07:26:17] pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Quit: Leaving.)
[07:28:31] raynop (raynop!~quassel@41.18.78.53) has joined #mythtv
[07:32:19] [R] ([R]!~rbox@unaffiliated/rbox) has quit (Quit: Leaving)
[07:32:30] Suit_Of_Sables: do any of you guys have small FF cases for your HTPC? looking for some suggestions. the possibility of an optical drive would be nice. Mostly looking for something not too pricey and purdy with good ventilation
[07:33:22] xris: Suit_Of_Sables: /topic
[07:34:04] Suit_Of_Sables: argh crap sorry, toggled into the wrong channel in irssi... why the hell did I leave it open :/ sorry
[07:40:08] pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv
[08:00:42] kormoc is now known as kormoc_afk
[08:06:04] Suit_Of_Sables (Suit_Of_Sables!~ennui@pool-72-87-180-236.lsanca.btas.verizon.net) has left #mythtv ()
[08:06:13] MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[08:08:00] simonckenyon (simonckenyon!~simoncken@195.7.61.12) has joined #mythtv
[08:08:50] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 245 seconds)
[08:09:55] dekarl (dekarl!~deKarl@e180143007.adsl.alicedsl.de) has left #mythtv ()
[08:11:23] robert____ (robert____!~quassel@g229055136.adsl.alicedsl.de) has quit (Remote host closed the connection)
[08:17:02] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[08:18:28] jpharvey (jpharvey!~jpharvey@host109-154-165-197.range109-154.btcentralplus.com) has quit (Ping timeout: 245 seconds)
[08:19:44] MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 255 seconds)
[08:30:29] jpharvey (jpharvey!~jpharvey@host109-154-166-74.range109-154.btcentralplus.com) has joined #mythtv
[08:30:55] XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 252 seconds)
[08:35:52] robert____ (robert____!~quassel@g229055136.adsl.alicedsl.de) has joined #mythtv
[08:39:14] MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv
[08:51:23] MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 240 seconds)
[08:52:11] el_duerino (el_duerino!~afey@2001:4bd8:2:2:223:aeff:fe91:6669) has joined #mythtv
[08:52:14] el_duerino (el_duerino!~afey@2001:4bd8:2:2:223:aeff:fe91:6669) has left #mythtv ()
[08:59:31] dserban (dserban!~dserban@S0106001346beb5f3.ok.shawcable.net) has joined #mythtv
[09:08:59] inordkuo (inordkuo!~inorkuo@adsl-177-184-138.int.bellsouth.net) has joined #mythtv
[09:09:55] stuarta: is anyone else missing the commit messages for 27301–27309 ??
[09:10:35] stuarta: s/messages/emails
[09:18:32] dekarl (dekarl!~deKarl@e180143007.adsl.alicedsl.de) has joined #mythtv
[09:18:32] simonckenyon (simonckenyon!~simoncken@195.7.61.12) has quit (Remote host closed the connection)
[09:19:01] wagnerrp: yep
[09:20:17] simonckenyon (simonckenyon!~simoncken@195.7.61.12) has joined #mythtv
[09:23:30] len (len!~quassel@184-97-182-53.mpls.qwest.net) has quit (Remote host closed the connection)
[09:25:06] Beirdo: stuarta: the hooks were inadvertantly disabled for that time
[09:25:24] Beirdo: so it didn't mail em at all
[09:26:25] stuarta: okay. glad it's not just me. means my mailserver didn't break itself
[09:26:32] ** stuarta sighs with relief **
[09:27:21] inordkuo (inordkuo!~inorkuo@adsl-177-184-138.int.bellsouth.net) has quit (Quit: Leaving.)
[09:29:21] ghoti (ghoti!~paul@74-51-38-192.telnetcommunications.com) has quit (Ping timeout: 245 seconds)
[09:29:59] ghoti (ghoti!~paul@74-51-38-192.telnetcommunications.com) has joined #mythtv
[09:31:12] Beirdo: heh :)
[09:33:39] momcilo (momcilo!~momcilo@217.24.18.195) has joined #mythtv
[09:34:57] stuarta: these things always happen when on holidays
[09:36:33] andreax (andreax!~Andreaz@tmo-100-234.customers.d1-online.com) has joined #mythtv
[09:36:44] Beirdo: yup, seems that way
[09:39:00] TM1111a (TM1111a!~Tony@c-98-237-207-201.hsd1.wa.comcast.net) has joined #mythtv
[09:47:39] momcilo (momcilo!~momcilo@217.24.18.195) has quit (Quit: Ex-Chat)
[09:55:20] simonckenyon (simonckenyon!~simoncken@195.7.61.12) has quit (Ping timeout: 272 seconds)
[10:01:51] andreax1 (andreax1!~Andreaz@tmo-101-41.customers.d1-online.com) has joined #mythtv
[10:03:02] NightMonkey (NightMonkey!~NightMonk@pdpc/supporter/professional/nightmonkey) has quit (Ping timeout: 264 seconds)
[10:03:53] andreax (andreax!~Andreaz@tmo-100-234.customers.d1-online.com) has quit (Ping timeout: 240 seconds)
[10:07:56] andreax (andreax!~Andreaz@tmo-101-101.customers.d1-online.com) has joined #mythtv
[10:10:08] andreax1 (andreax1!~Andreaz@tmo-101-41.customers.d1-online.com) has quit (Ping timeout: 245 seconds)
[10:21:16] andreax (andreax!~Andreaz@tmo-101-101.customers.d1-online.com) has quit (Quit: Leaving.)
[10:47:32] jamesba (jamesba!~jamesba@156.106.244.185) has joined #mythtv
[11:17:56] jamesba (jamesba!~jamesba@156.106.244.185) has quit (Ping timeout: 255 seconds)
[12:44:55] gigem (gigem!~david@host137.12.intrusion.com) has joined #mythtv
[12:48:53] gigem_ (gigem_!~david@host137.12.intrusion.com) has quit (Ping timeout: 245 seconds)
[12:57:40] dashcloud (dashcloud!~quassel@71.185.198.215) has quit (Ping timeout: 252 seconds)
[13:01:27] Gibby_away is now known as Gibby
[13:02:09] jamesba (jamesba!~jamesba@156.106.244.185) has joined #mythtv
[13:20:09] inordkuo (inordkuo!~inorkuo@nsc64.16.142-198.newsouth.net) has joined #mythtv
[13:21:55] jamesba (jamesba!~jamesba@156.106.244.185) has quit (Ping timeout: 260 seconds)
[13:46:46] MaverickTech (MaverickTech!~MaverickT@123.200.245.140) has joined #mythtv
[14:06:53] raynop (raynop!~quassel@41.18.78.53) has quit (Ping timeout: 250 seconds)
[14:23:13] MaverickTech (MaverickTech!~MaverickT@123.200.245.140) has quit (Ping timeout: 240 seconds)
[14:40:55] j-rod|afk is now known as j-rod
[14:48:46] robert____ (robert____!~quassel@g229055136.adsl.alicedsl.de) has quit (Ping timeout: 252 seconds)
[15:15:08] jamesba (jamesba!~jamesba@156.106.244.185) has joined #mythtv
[15:19:39] bestis_ (bestis_!~bestis@rm.purkki.org) has joined #mythtv
[15:21:20] J-e-f-f-A_ (J-e-f-f-A_!~J-e-f-f-A@unaffiliated/j-e-f-f-a) has joined #mythtv
[15:21:24] jams_ (jams_!~jams@cpe-184-58-217-97.wi.res.rr.com) has joined #mythtv
[15:22:13] laga_ (laga_!~laga@h1626373.stratoserver.net) has joined #mythtv
[15:24:08] Splat2 (Splat2!~Splat1@rf1.splat1.com) has joined #mythtv
[15:24:17] clever_ (clever_!~clever@142.167.218.74) has joined #mythtv
[15:24:36] Splat1 (Splat1!~Splat1@rf1.splat1.com) has quit (Ping timeout: 245 seconds)
[15:24:36] bestis (bestis!~bestis@rm.purkki.org) has quit (Ping timeout: 245 seconds)
[15:24:37] laga (laga!~laga@pdpc/supporter/student/laga) has quit (Ping timeout: 245 seconds)
[15:24:38] jams (jams!~jams@cpe-184-58-217-97.wi.res.rr.com) has quit (Ping timeout: 245 seconds)
[15:24:39] J-e-f-f-A (J-e-f-f-A!~J-e-f-f-A@unaffiliated/j-e-f-f-a) has quit (Ping timeout: 245 seconds)
[15:24:39] clever (clever!~clever@142.167.218.74) has quit (Ping timeout: 245 seconds)
[15:24:39] J-e-f-f-A_ is now known as J-e-f-f-A
[15:31:48] kormoc_afk (kormoc_afk!~kormoc@unaffiliated/kormoc) has quit (Ping timeout: 245 seconds)
[15:58:50] justpaul (justpaul!~justpaul@poizon.epicshells.com) has quit (Ping timeout: 260 seconds)
[16:07:07] danielk22 (danielk22!~danielk@96.57.9.142) has quit (Quit: Leaving.)
[16:11:11] jamesba (jamesba!~jamesba@156.106.244.185) has quit (Ping timeout: 255 seconds)
[16:11:46] justpaul (justpaul!alexdelarg@poizon.epicshells.com) has joined #mythtv
[16:14:41] kormoc_afk (kormoc_afk!~kormoc@unaffiliated/kormoc) has joined #mythtv
[16:15:22] robert____ (robert____!~quassel@g226060046.adsl.alicedsl.de) has joined #mythtv
[16:48:26] elmojo: Beirdo: thanks for testing the patch... I'll work on cleaning it up and getting it checked-in
[16:49:11] elmojo: I also need to analyze the sample and find out why we don't change the frame interval when the fps changes
[16:50:41] natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv
[16:54:23] TM1111a (TM1111a!~Tony@c-98-237-207-201.hsd1.wa.comcast.net) has quit (Ping timeout: 255 seconds)
[16:56:24] ghoti (ghoti!~paul@74-51-38-192.telnetcommunications.com) has quit (Remote host closed the connection)
[17:00:38] hashbang (hashbang!~hashbang@cse-ajb.cse.bris.ac.uk) has quit (Remote host closed the connection)
[17:21:51] abqjp (abqjp!~abqjp@97-119-171-65.albq.qwest.net) has joined #mythtv
[17:39:35] ghoti (ghoti!~paul@74-51-38-192.telnetcommunications.com) has joined #mythtv
[17:45:22] gigem_ (gigem_!~david@host137.12.intrusion.com) has joined #mythtv
[17:49:18] gigem (gigem!~david@host137.12.intrusion.com) has quit (Ping timeout: 245 seconds)
[18:03:24] Dave123-road (Dave123-road!~dave@cpe-74-74-222-96.rochester.res.rr.com) has quit (Quit: Leaving)
[18:08:36] kormoc_afk is now known as kormoc
[18:35:34] jmartens (jmartens!~jmartens@s5595e03d.adsl.wanadoo.nl) has joined #mythtv
[18:38:40] gregL (gregL!~greg@74.76.125.87) has quit (Quit: Leaving)
[18:39:57] jmartens (jmartens!~jmartens@s5595e03d.adsl.wanadoo.nl) has quit (Client Quit)
[18:40:39] jmartens (jmartens!~jmartens@s5595e03d.adsl.wanadoo.nl) has joined #mythtv
[19:00:41] gregL (gregL!~greg@cpe-74-76-125-87.nycap.res.rr.com) has joined #mythtv
[19:25:04] gigem_ is now known as gigem
[19:29:17] stuartm: sphery: that one is for you ;)
[19:42:16] Dave123-road (Dave123-road!~dave@12.184.38.42) has joined #mythtv
[19:42:45] stuartm: ouch, seems I remembered the issues around auto-hiding the mouse cursor, danielk did have a valid concern
[19:42:57] stuartm: crap
[19:57:40] stuarta: ah well, shit happens
[19:58:34] stuartm: restored the setting but it's changed to be an override instead of the normal behaviour
[19:59:48] stuartm: so much for a 5-minute feature :)
[20:04:09] len (len!~quassel@184-97-182-53.mpls.qwest.net) has joined #mythtv
[20:30:19] Dave123-road (Dave123-road!~dave@12.184.38.42) has quit (Quit: Leaving)
[20:37:22] Kunalagon (Kunalagon!~Kunalagon@212.200.240.161) has joined #mythtv
[20:38:03] sphery: stuartm: Heh, I'm assuming you mean an e-mail? If so, I hope I get it soon. I had a very bad HDD crash on my mail server. I'm currently finishing up the rebuild--hoping to finish before the 48hrs most mail servers are set to keep trying before fail.
[20:39:25] sphery: and, FWIW, xris or whoever might be seeing the list bounces if the list is starting to fail on my missing mail server, I apologize for the mess during the cleanup.
[20:45:57] xris: dunno
[20:52:43] stoffel (stoffel!~quassel@91.137.68.177) has joined #mythtv
[20:54:13] kth (kth!~kth@dyndsl-085-016-238-200.ewe-ip-backbone.de) has quit (Quit: Leaving.)
[20:54:45] jya (jya!~avenardj@60-242-40-141.static.tpgi.com.au) has quit (Quit: jya)
[21:09:41] tris (tris!~tristan@CAMEL.ETHEREAL.NET) has quit (Ping timeout: 255 seconds)
[21:10:27] duerF (duerF!~tommi@heima.tommi.org) has joined #mythtv
[21:17:15] stuartm: sphery: commit which remove a setting, but unfortunately it's followed by a second commit which re-adds that same setting :(
[21:18:37] tris (tris!~tristan@CAMEL.ETHEREAL.NET) has joined #mythtv
[21:22:28] sphery: heh, oh, well it's the thought that counts.
[21:29:40] stuartm: seemed like an easy win, until I re-read the comments surrounding the proposal and realised that Daniel had picked up on an obvious flaw :(
[21:30:55] stuartm: all the other objections were based on a misunderstanding of what was being proposed, but the touchscreen scenario is not only valid it's one I've spent a lot of time working towards
[21:39:39] jannau: https://github.com/MythTV/mythtv
[21:50:49] stuarta: \o/
[21:51:25] superm1: ooh purdy
[21:54:14] AriX (AriX!~Ari@c-76-99-118-183.hsd1.pa.comcast.net) has joined #mythtv
[21:56:20] kenni (kenni!~kenni@pfsense.dhcp.pop.k-net.dk) has quit (Ping timeout: 255 seconds)
[22:00:11] Kunalagon (Kunalagon!~Kunalagon@212.200.240.161) has quit (Quit: Leaving.)
[22:09:29] stoffel (stoffel!~quassel@91.137.68.177) has quit (Remote host closed the connection)
[22:20:36] kenni (kenni!~kenni@pfsense.dhcp.pop.k-net.dk) has joined #mythtv
[22:23:55] natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 240 seconds)
[22:27:34] xris: jannau: might want to mention that it's still in testing phase
[22:28:01] Beirdo: please :) before people clone and then say "hey!" when it gets force-pushed :)
[22:30:58] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has quit (Ping timeout: 245 seconds)
[22:32:57] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has joined #mythtv
[22:38:28] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has quit (Ping timeout: 245 seconds)
[22:38:37] ** jannau has added a note to git repo page and expects it to be overlooked **
[22:39:31] inordkuo (inordkuo!~inorkuo@nsc64.16.142-198.newsouth.net) has quit (Ping timeout: 255 seconds)
[22:39:42] jmartens (jmartens!~jmartens@s5595e03d.adsl.wanadoo.nl) has quit (Quit: Leaving.)
[22:39:59] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has joined #mythtv
[22:40:15] stuartm: 'force-pushed'? isn't that an ability you earn when playing Star Wars: Knights of the Old Republic?
[22:40:56] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has quit (Client Quit)
[22:41:03] superm1: jannau, is it setup to automatically update when an update is pushed to svn too at this point, or just a manual type thing until the switchover?
[22:41:18] stuartm: it's going to take a while before I understand what anyone is talking about wrt to Git, it seems to have it's own associated language
[22:41:37] ** iamlindoro waves his hand at stuartm. This isn't the repository you're looking for. **
[22:41:59] stuartm: iamlindoro: I'll move along then
[22:42:13] iamlindoro: heh
[22:43:57] superm1: stuartm, http://www.spinics.net/lists/git/msg143536.html
[22:44:03] superm1: that should hit on the big confusing things
[22:44:29] sphery (sphery!~mdean@user-0c6s50s.cable.mindspring.com) has joined #mythtv
[22:48:06] jannau: superm1: it's not (yet) automatically updated
[22:50:50] j-rod is now known as j-rod|afk
[22:50:53] stuartm: superm1: thanks, after that War & Peace doesn't seem so intimidating
[22:51:15] iamlindoro: Git: It's simple, just like neurosurgery.
[22:51:27] dashcloud (dashcloud!~quassel@71.185.198.215) has joined #mythtv
[22:58:33] Beirdo: ummm
[22:58:52] Beirdo: the plan is... once we are ready to switch to git, no more updates go to svn
[22:58:58] Beirdo: just not ready yet
[23:12:05] superm1: Beirdo, how would you feel if we moved our debian packaging to a mergable branch with the packaging under packaging/debian? then if someone wanted to make debs, they could in theory just ln -s packaging/debian debian; dpkg-buildpackage to get debs
[23:12:23] superm1: and you guys could just service merge requests when we had them then for packaging updates
[23:12:55] Beirdo: I personally like the idea, not sure how others feel. I think we already have rpm packaging stuff in there
[23:13:30] superm1: it would be a bit of a different model from how we operate right now, but we have to switch models anyway since autobuilds has to be redone to do stuff with git checkouts
[23:22:44] xris: superm1: that's why I created that subtree
[23:23:16] xris: isaac wanted the osx/win stuff out of the mythtv subtree, and I wanted semi-official rpm stuff
[23:23:26] Gibby is now known as Gibby_away
[23:24:27] superm1: xris, well as long you guys could commit to regularly merge our packaging stuff i think that could certainly work then
[23:25:14] xris: or just give you access to push
[23:25:43] superm1: that could work too
[23:25:57] Beirdo: once we are using github, a pull request would be simple enough
[23:31:20] xris: too bad I think jannau went to sleep
[23:31:24] mrand: stuartm: if you click on the follow-up at the bottom of that email, you get "War & Peace, Decoded."
[23:31:29] jannau: xris: not yet
[23:31:37] xris: ah
[23:31:45] xris: so how close do you think we are to enabling github?
[23:33:11] jannau: how close is everything else? I still need to verify the old branches
[23:33:45] jannau: I have to update .gitignore files and the version stuff
[23:34:18] Beirdo: jannau: I guess you already have .gitignores? I have a set if you are need of them
[23:35:50] jannau: I need to update them
[23:35:56] Beirdo: K
[23:36:58] jannau: bah, I need to fix the tags
[23:37:46] jannau: the tags are pointing to the actual tag commit which is stupid in git
[23:38:20] Beirdo: I noticed the branches were renamed too. Interesting :)
[23:38:34] xris: yeah, that link I PMd you earlier might be better
[23:38:46] xris: don't you need to check out the branch and then tag it?
[23:40:50] jannau: I though the new names are easier to parse then the old ones
[23:41:40] Beirdo: aye. Not complaining, just noticing
[23:54:08] dekarl1 (dekarl1!~deKarl@e180143113.adsl.alicedsl.de) has joined #mythtv
[23:55:53] dekarl (dekarl!~deKarl@e180143007.adsl.alicedsl.de) has quit (Ping timeout: 276 seconds)

IRC Logs collected by BeirdoBot.
Please use the above link to report any bugs.