Wednesday, January 26th, 2011, 00:38 UTC | ||
[00:38:25] | andreax (andreax!~andreaz@p57B92622.dip.t-dialin.net) has quit (Quit: Leaving.) | |
[00:38:33] | kwmonroe (kwmonroe!~kwmonroe@32.97.110.58) has quit (Quit: Ex-Chat) | |
[00:43:21] | xris: | cool. MX set up for lists.mythtv.org so we can start testing mailing list migration. |
[01:26:32] | knightr: | xris, any reason why a mx that points to the same server was defined? (since it's not actually necessary because if no MX is defined SMTP traffic is sent to the A record) Are we planning to have more than one MX for lists.mythtv.org? |
[01:26:52] | ** knightr is just curious... ** | |
[01:27:10] | ** knightr :) ** | |
[01:35:50] | bbc581 (bbc581!~Miranda@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[01:36:39] | gigem (gigem!~david@host137.12.intrusion.com) has quit (Ping timeout: 240 seconds) | |
[01:46:39] | clever: | knightr: i was under the impression that some servers refuse to send without an MX |
[01:47:34] | knightr: | AFAIK that would be against the related RFCs... |
[01:47:38] | xris: | knightr: because I suspect that without the separate MX, it would go to the one for the TLD |
[01:47:49] | xris: | or some servers would |
[01:47:56] | xris: | anyway, mostly "just in case" |
[01:48:09] | xris: | ok. time to go hoem. |
[01:48:11] | xris: | home, even. |
[01:49:26] | knightr: | ok, np... I used to do DNS admin at work and I guess I still like talking about these things... :) Thanks! |
[01:50:19] | knightr: | (and, btw, they would be against RFC if they sent it to mythtv.org (either MX or possibly A if we have one)) |
[01:52:57] | knightr: | (both A for myhttv.org and MX point to the same IP anyway...) |
[01:57:07] | Mousey (Mousey!~wtfisme@ross154.net) has quit (Remote host closed the connection) | |
[02:02:56] | knightr: | clever, http://en.wikipedia.org/wiki/MX_record#History_of_fallback_to_A |
[02:03:17] | ** clever reads ** | |
[02:05:43] | clever: | ah |
[02:07:25] | knightr: | an MTA that didn't support this would shoot themselves in the foot... :) |
[02:12:32] | clever: | yeah |
[02:17:36] | bbc581 (bbc581!~Miranda@74-129-133-90.dhcp.insightbb.com) has quit (Read error: No route to host) | |
[02:26:10] | constantin (constantin!~constanti@p3EE249AD.dip.t-dialin.net) has quit (Ping timeout: 240 seconds) | |
[02:58:11] | gigem_ is now known as gigem | |
[03:05:53] | elmojo: | markk_: I've been digging some more and the LiveTV transition failures I'm seeing now are all backend related (probably were before too) |
[03:06:54] | elmojo: | the new livetv file is created and growing but every read gives a bad file descriptor error – seems like maybe we aren't opening the file properly or something |
[03:07:16] | markk_: | elmojo: is that with eagain diffs applied? |
[03:07:51] | elmojo: | yes |
[03:08:05] | elmojo: | but that shouldn't matter for the backend, right? |
[03:10:10] | elmojo: | a wild guess would be we are somehow not opening the file properly if it's not created quickly enough – I don't know much about bad file descriptor errors |
[03:10:22] | markk_: | elmojo: not sure:) |
[03:10:45] | elmojo: | pretty sure the EAGAIN is for the frontend player |
[03:10:46] | iamlindoro: | !seen danielk22 |
[03:10:46] | MythLogBot: | danielk22 was last seen 10 days 10 hours 19 minutes 9 seconds ago |
[03:12:50] | markk_: | elmojo: I think your right re mpegts.c – just not sure about the ringbuffer.cpp change |
[03:14:22] | elmojo: | the ringbuffer.cpp is for the safe_read which is used by the player I believe |
[03:17:03] | elmojo: | markk_: here is a pastebin of the errors -> http://pastebin.com/k3nNGeWZ |
[03:21:36] | elmojo: | markk_: apparently the code thinks it has a valid file descriptor but it doesn't obviously |
[03:21:54] | elmojo: | I'll add some debug code to dump the fd for the Open and the failing Seek calls |
[03:40:20] | elmojo: | markk_: I think I know what's happening – looks like a race condition of when we open the new livetv recording and set the file descriptor and when we close the old recording file we set the file descriptor to -1 |
[03:41:39] | elmojo: | so I'm seeing us open the new file successfully and set the file descripter (in my case fd2 = 61) and then when we start trying to seek and read from the file fd2 got set to -1 which I'm guessing was caused when we closed the old file |
[03:49:09] | markk_: | elmojo: which class is that in? |
[03:50:19] | elmojo: | libs/libmythtv/RingBuffer.cpp |
[03:54:12] | elmojo: | I think I understand what is happening – it calls RingBuffer:OpenFile with a timeout – it opens the file until the timeout occurs and if not enough data has arrived in the timeout period it closed the file and sets the file descriptor to -1 |
[03:54:42] | elmojo: | which is what I'm seeing – I'm pretty sure if I skip closing the file and setting the fd2 to -1 then it will work for me |
[03:55:01] | markk_: | need bigger timeout .... |
[03:55:06] | elmojo: | I think the HD-PVR must be a little slow |
[03:55:19] | elmojo: | let me check what that is...... |
[03:58:38] | elmojo: | it's set to ~ 2secs |
[03:58:50] | elmojo: | sounds large enough but let's see |
[03:59:58] | elmojo: | jpabq: is it reasonable to think that the HD-PVR would take more than 2 seconds to start filling a new file? |
[04:03:50] | gbutters (gbutters!~Gary@ip68-11-58-116.no.no.cox.net) has joined #mythtv | |
[04:04:26] | elmojo: | markk_: at any rate this appears to be specific to the HD-PVR device – I believe your patch and Jiri's does fix real problems with the frontend handling transitions |
[04:05:21] | elmojo: | in fact the new fixes does seem to fix transitions on one of my HD-PVR 720p stations but the 1080i I'm using for testing failed miserably |
[04:09:14] | markk_: | elmojo: ok – thanks. so glad I don't own an hd-pvr :) |
[04:09:53] | elmojo: | be glad you don't need an hd-pvr :) like we do here in the states |
[04:14:30] | Beirdo: | okolsi: ping |
[04:19:39] | elmojo: | markk_: seems to be working like a charm now (knock on wood) |
[04:20:58] | elmojo: | interestingly if you look in RingBuffer.cpp you'll find kDefaultOpenTimeout set to 2000 msec and kLiveTVOpenTimeout set to 10000 msec |
[04:21:28] | elmojo: | but it's using 2000 msec for transitions – the only place I see kLiveTVOpenTimeout is in tv_play.cpp |
[04:28:57] | markk_: | elmojo: presumably that timeout needs changing in tv_rec ? |
[04:29:52] | elmojo: | markk_: I'm not sure where the new RingBuffer is getting created for the next livetv transition.... it's presumably in tv_play |
[04:30:35] | elmojo: | I think if you don't specify the timeout when creating a RingBuffer it uses the 2000 msec default |
[04:31:11] | elmojo: | there are 2 instances of RingBuffer creation in tv_play that uses kLiveTVOpenTimeout |
[04:34:29] | elmojo: | markk_: sorry I just realized you mentioned tv_rec not tv_play – sorry, it's past my bed time :) |
[04:35:00] | purserj (purserj!~purserj@hosting.collaborynth.com.au) has quit (Ping timeout: 260 seconds) | |
[04:35:20] | purserj (purserj!~purserj@hosting.collaborynth.com.au) has joined #mythtv | |
[05:27:37] | Computer_Czar (Computer_Czar!~Unknown@69.4.155.83) has joined #mythtv | |
[05:55:24] | dagar (dagar!~dagar@agar.ca) has quit (Ping timeout: 250 seconds) | |
[06:08:24] | wagnerrp (wagnerrp!~wagnerrp_@mythtv/developer/wagnerrp) has quit (Ping timeout: 250 seconds) | |
[06:19:24] | wagnerrp (wagnerrp!~wagnerrp_@mythtv/developer/wagnerrp) has joined #mythtv | |
[06:23:18] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[06:25:09] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has quit (Client Quit) | |
[06:29:53] | holomntn1 (holomntn1!~Joe@71-93-231-1.dhcp.mdfd.or.charter.com) has joined #mythtv | |
[06:30:43] | holomntn (holomntn!~Joe@71-93-231-1.dhcp.mdfd.or.charter.com) has quit (Ping timeout: 246 seconds) | |
[06:34:33] | dagar (dagar!~dagar@agar.ca) has joined #mythtv | |
[06:53:44] | dagar (dagar!~dagar@agar.ca) has quit (Ping timeout: 276 seconds) | |
[06:54:24] | dagar (dagar!~dagar@agar.ca) has joined #mythtv | |
[06:58:40] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[07:10:59] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has quit () | |
[07:12:29] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[07:19:32] | deaman (deaman!~dean@3.79-160-162.customer.lyse.net) has joined #mythtv | |
[07:22:25] | deaman (deaman!~dean@3.79-160-162.customer.lyse.net) has quit (Client Quit) | |
[07:22:41] | deaman (deaman!~dean@3.79-160-162.customer.lyse.net) has joined #mythtv | |
[07:23:03] | deaman (deaman!~dean@3.79-160-162.customer.lyse.net) has quit (Read error: Connection reset by peer) | |
[07:23:11] | deaman (deaman!~dean@3.79-160-162.customer.lyse.net) has joined #mythtv | |
[07:32:54] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has quit () | |
[07:33:27] | j-rod|afk (j-rod|afk!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has quit (Ping timeout: 240 seconds) | |
[07:39:05] | j-rod|afk (j-rod|afk!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has joined #mythtv | |
[08:08:02] | andreax (andreax!~Andreaz@tmo-101-238.customers.d1-online.com) has joined #mythtv | |
[08:23:40] | andreax (andreax!~Andreaz@tmo-101-238.customers.d1-online.com) has quit (Read error: Connection reset by peer) | |
[08:29:41] | andreax (andreax!~Andreaz@tmo-100-231.customers.d1-online.com) has joined #mythtv | |
[08:36:24] | andreax1 (andreax1!~Andreaz@tmo-105-117.customers.d1-online.com) has joined #mythtv | |
[08:40:05] | andreax (andreax!~Andreaz@tmo-100-231.customers.d1-online.com) has quit (Ping timeout: 240 seconds) | |
[08:49:08] | dserban (dserban!~dserban@S0106001346beb5f3.ok.shawcable.net) has joined #mythtv | |
[09:00:02] | deaman (deaman!~dean@3.79-160-162.customer.lyse.net) has quit (Quit: deaman) | |
[09:16:57] | stuarta: | stuartm: re EIT, the only thing is see is we were talking about using xmltvid's to link up identical channels to feed them across eit, weren't we? |
[09:19:00] | stuartm: | stuarta: last week we discussed automatically disabling EIT collection on channels which have an xmltvid defined |
[09:22:55] | stuartm: | at least I thought it was last week, very recently at least |
[09:44:42] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv | |
[09:45:23] | jamesba (jamesba!~jamesba@gateb.kw.bbc.co.uk) has joined #mythtv | |
[09:47:48] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 248 seconds) | |
[09:52:25] | stuarta: | xris: you don't need an MX record it's it's the same as the A record |
[09:53:07] | ** stuarta finally catches up on scrollback ** | |
[09:56:23] | stuarta: | stuartm: i must have missed that discussion |
[09:57:12] | andreax1 (andreax1!~Andreaz@tmo-105-117.customers.d1-online.com) has quit (Ping timeout: 246 seconds) | |
[09:57:24] | stuartm: | huh, I could have sworn that you were participating |
[09:57:36] | stuarta: | maybe, i have the memory of a goldfish |
[09:57:45] | andreax (andreax!~Andreaz@tmo-105-117.customers.d1-online.com) has joined #mythtv | |
[09:58:14] | stuartm: | I suppose you'll be telling me next that you've forgotten that ten quid you owe me? |
[09:59:38] | stuarta: | hah! |
[09:59:46] | stuarta: | :-p |
[09:59:50] | stuartm: | ;) |
[09:59:58] | stuarta: | it was worth a try |
[10:18:31] | dserban (dserban!~dserban@S0106001346beb5f3.ok.shawcable.net) has quit (Quit: Leaving) | |
[10:53:50] | h7251 (h7251!~h725@62-47-243-157.adsl.highway.telekom.at) has joined #mythtv | |
[10:54:14] | h7251: | hello, are mythplugins (esp. mythweb) discussed here as well? |
[10:55:23] | h7251: | or the development thereof (of course) |
[11:08:12] | jamesba: | I've certainly discussed them here before |
[11:16:42] | ikonia (ikonia!~mattd@unaffiliated/ikonia) has joined #mythtv | |
[11:21:50] | highzeth (highzeth!~hz@hoiseth.no) has quit (Quit: Leaving) | |
[11:31:04] | Captain_Murdoch (Captain_Murdoch!~cpinkham@mythtv/developer/CaptainMurdoch) has quit (Ping timeout: 240 seconds) | |
[11:31:43] | h7251: | I'm wondering about mythweb /usr/share/mythtv/mythweb/classes/Translate.php crashes b/c the modules_path is not set. i.e., the define in utils.php does not define the right/any value. |
[11:41:17] | deaman (deaman!~deaman@nat/trolltech/x-rzxsecjzdidrhqjm) has joined #mythtv | |
[11:52:25] | simonckenyon (simonckenyon!~simoncken@195.7.61.12) has joined #mythtv | |
[11:52:38] | simonckenyon (simonckenyon!~simoncken@195.7.61.12) has quit (Client Quit) | |
[11:59:32] | stuartm: | kormoc: ^^ |
[12:00:08] | knightr (knightr!~knightr@mythtv/developer/knightr) has quit (Ping timeout: 240 seconds) | |
[12:01:38] | stuartm: | iamlindoro: the question is, do we treat media events like keypress/gesture events and only send them to the visible screens, or do we instead treat them like mythevents and send them to any registered listeners? |
[12:02:49] | stuartm: | the former is subtly easier, the latter requires that anyone wanting to handle those events needs to explicitly register but means that non-ui classes or background screens can receive events |
[12:03:44] | stuartm: | there's no pointer to the second option if no-one can imagine a use-case |
[12:10:39] | j-rod|afk (j-rod|afk!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has quit (Ping timeout: 240 seconds) | |
[12:16:15] | j-rod|afk (j-rod|afk!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has joined #mythtv | |
[12:25:27] | knightr (knightr!~knightr@mythtv/developer/knightr) has joined #mythtv | |
[12:31:27] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv | |
[12:34:12] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 248 seconds) | |
[12:35:04] | andreax (andreax!~Andreaz@tmo-105-117.customers.d1-online.com) has quit (Read error: Connection reset by peer) | |
[12:42:41] | andreax (andreax!~Andreaz@tmo-105-117.customers.d1-online.com) has joined #mythtv | |
[12:45:51] | j-rod|afk (j-rod|afk!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has quit (Ping timeout: 240 seconds) | |
[12:51:35] | j-rod|afk (j-rod|afk!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has joined #mythtv | |
[12:54:28] | deaman (deaman!~deaman@nat/trolltech/x-rzxsecjzdidrhqjm) has quit (Quit: deaman) | |
[12:55:31] | Captain_Murdoch (Captain_Murdoch!~cpinkham@ip72-218-57-109.hr.hr.cox.net) has joined #mythtv | |
[12:55:31] | Captain_Murdoch (Captain_Murdoch!~cpinkham@ip72-218-57-109.hr.hr.cox.net) has quit (Changing host) | |
[12:55:31] | Captain_Murdoch (Captain_Murdoch!~cpinkham@mythtv/developer/CaptainMurdoch) has joined #mythtv | |
[12:56:41] | h7252 (h7252!~h725@62-47-250-205.adsl.highway.telekom.at) has joined #mythtv | |
[12:57:28] | h7251 (h7251!~h725@62-47-243-157.adsl.highway.telekom.at) has quit (Read error: Operation timed out) | |
[13:10:14] | wagnerrp: | h7252: mythweb is not technically a plugin, nor is it even located in the 'mythplugins' folder any longer |
[13:11:06] | wagnerrp: | further, the only time ive ever heard of users having that issue, its only a side effect of some more serious configuration problem |
[13:11:48] | wagnerrp: | so any solution would just be to provide a more accurate error message where the initial failure occurred |
[13:45:27] | stuartm: | iamlindoro: update – forget the previous, decided to combine both ideas as we'd otherwise need to break the mediamonitor out into it's own lib or move it into mythdb along with some other significant structural changes |
[13:58:27] | stuartm (stuartm!~stuartm@mythtv/developer/stuartm) has quit (Remote host closed the connection) | |
[13:58:48] | stuartm (stuartm!~stuartm@cpc4-derb9-0-0-cust534.8-3.cable.virginmedia.com) has joined #mythtv | |
[13:58:48] | stuartm (stuartm!~stuartm@cpc4-derb9-0-0-cust534.8-3.cable.virginmedia.com) has quit (Changing host) | |
[13:58:48] | stuartm (stuartm!~stuartm@mythtv/developer/stuartm) has joined #mythtv | |
[14:13:50] | stuartm_ (stuartm_!~stuartm@cpc4-derb9-0-0-cust534.8-3.cable.virginmedia.com) has joined #mythtv | |
[14:13:50] | stuartm_ (stuartm_!~stuartm@cpc4-derb9-0-0-cust534.8-3.cable.virginmedia.com) has quit (Changing host) | |
[14:13:50] | stuartm_ (stuartm_!~stuartm@mythtv/developer/stuartm) has joined #mythtv | |
[14:14:22] | stuartm (stuartm!~stuartm@mythtv/developer/stuartm) has quit (Read error: Connection reset by peer) | |
[14:14:48] | stuartm_ is now known as stuartm | |
[14:22:32] | j-rod|afk is now known as j-rod | |
[14:32:20] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[14:35:23] | stuarta: | iamlindoro: these google tv for US based devs? |
[14:36:09] | iamlindoro: | stuarta, Other Rob-- you want kormoc :) |
[14:36:37] | stuarta: | heh doh! |
[14:36:40] | stuarta: | kormoc: ^^^ |
[14:36:50] | iamlindoro: | stuartm, cool, didn't expect you to be looking at it so soon-- I can adapt to either approach |
[14:40:55] | jamesba (jamesba!~jamesba@gateb.kw.bbc.co.uk) has quit (Quit: Leaving) | |
[14:41:40] | stuartm: | iamlindoro: just trying to see how I'm going to make it work and how much work is involved |
[14:42:45] | stuartm: | currently weighing up doing it 'The Right Way'® vs doing it the easy way, leaning towards easy |
[14:44:08] | stuartm: | iamlindoro: it has uses beyond what you're wanting to do, e.g. in mythmusic, mythgallery etc which is why I'm giving it my attention now :) |
[14:44:14] | jamesba (jamesba!~jamesba@132.185.140.26) has joined #mythtv | |
[14:44:29] | iamlindoro: | yeah, there's a lot of places it could be of use |
[14:44:53] | iamlindoro: | heck, could even selectgively remove/add the optical disc main menu items based on whether a disc was present/what type it was |
[14:45:12] | stuarta: | shiny++ |
[14:48:42] | jamesba (jamesba!~jamesba@132.185.140.26) has quit (Read error: Operation timed out) | |
[14:49:49] | gigem_ (gigem_!~david@host137.12.intrusion.com) has joined #mythtv | |
[14:51:15] | stuartm: | iamlindoro: or indeed whether there is even an optical media drive in the frontend |
[14:52:00] | kierank (kierank!~kierank@78-105-80-74.zone3.bethere.co.uk) has joined #mythtv | |
[14:52:44] | stuartm: | there's no question that the mediamonitor/mediadevice stuff is an underused resource |
[14:57:48] | kierank: | Is there any reasoning behind how often LATM UseSameStreamMux=yes is sent? |
[15:04:41] | jamesba (jamesba!~jamesba@132.185.140.26) has joined #mythtv | |
[15:12:25] | jarle (jarle!~jarle@70.84-234-133.customer.lyse.net) has quit (Read error: Connection reset by peer) | |
[15:29:35] | Kunalagon (Kunalagon!~Kunalagon@212.200.243.36) has joined #mythtv | |
[15:40:37] | elmojo: | markk_: so I'm noticing it takes anywhere from 2.5 – 8.1 secs for a new file to be created using an HD-PVR – the good news is that increasing the timeout on the backend and the socket timeout on the frontend works :) |
[15:44:35] | highzeth (highzeth!~hz@hoiseth.no) has joined #mythtv | |
[15:45:44] | Jordack (Jordack!~jordack@h69-131-44-221.mdsnwi.tisp.static.tds.net) has joined #mythtv | |
[15:55:54] | skd5aner (skd5aner!~skd5aner@cpe-069-132-082-180.carolina.res.rr.com) has quit () | |
[15:58:02] | xris (xris!~xris@mythtv/developer/xris) has quit (Ping timeout: 240 seconds) | |
[15:58:18] | andreax (andreax!~Andreaz@tmo-105-117.customers.d1-online.com) has quit (Read error: Connection reset by peer) | |
[15:59:06] | markk_: | elmojo: I'm heading to bed, but.... I can't help but think we're never going to get livetv working well if we have devices taking that long to tune/initialise/return data – especially if we're trying to start a new 'session' just to handle a program transition. |
[16:03:04] | elmojo: | markk_: agreed, hopefully jpabq can take a look at this hd-pvr issue |
[16:04:00] | elmojo: | I'm waiting on Jiri's magical patch he says he's going to post soon |
[16:07:35] | j-rod: | stuartm: fyi, there's been some actual progress on the xorg <-> rc interaction issue... |
[16:07:56] | j-rod: | https://bugzilla.redhat.com/show_bug.cgi?id=671574 |
[16:08:19] | j-rod: | mauro has been talking with peter hutterer and started writing evdev patches |
[16:09:28] | j-rod: | its a bit of a hack, but a hack that actually works is better than another 4 years before we get proper support |
[16:13:08] | jarle (jarle!~jarle@70.84-234-133.customer.lyse.net) has joined #mythtv | |
[16:18:38] | kth (kth!~kth@dyndsl-080-228-191-153.ewe-ip-backbone.de) has joined #mythtv | |
[16:25:36] | stuartm: | fantastic |
[16:53:25] | gigem_ (gigem_!~david@host137.12.intrusion.com) has quit (Ping timeout: 240 seconds) | |
[16:58:27] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has quit (Read error: Connection reset by peer) | |
[17:00:58] | gregL (gregL!~greg@cpe-74-76-125-87.nycap.res.rr.com) has quit (Remote host closed the connection) | |
[17:02:55] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[17:03:12] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has quit (Remote host closed the connection) | |
[17:04:04] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has joined #mythtv | |
[17:04:14] | bbc581 (bbc581!~bbc581@74-129-133-90.dhcp.insightbb.com) has quit (Remote host closed the connection) | |
[17:04:38] | andreax (andreax!~andreaz@p57B94E16.dip.t-dialin.net) has joined #mythtv | |
[17:12:36] | sphery: | h7252: I think you just need to update to current 0.24-fixes or unstable/development: http://code.mythtv.org/trac/ticket/9224 + http://code.mythtv.org/trac/ticket/9255 |
[17:13:30] | gregL (gregL!~greg@cpe-74-76-125-87.nycap.res.rr.com) has joined #mythtv | |
[17:20:05] | kormoc: | stuarta, Yeah, even with a Canadian ip they block all service to the device |
[17:24:13] | iamlindoro: | kormoc: Wow, *all* service? |
[17:24:15] | iamlindoro: | that sucks |
[17:24:24] | h7252: | wagnerrp: the error message in /var/log/apache2/error.log is: |
[17:24:25] | h7252: | [error] [client 192.168.1.28] PHP Fatal error: Failed to open translation file: modules_path/_shared/lang/English.lang in /usr/share/mythtv/mythweb/classes/Translate.php on line 172 |
[17:24:49] | kormoc: | iamlindoro, you have to active the device and device activation requires a us ip. I don't know what would happen if you activated it here and then took it over the border |
[17:27:57] | Mousey (Mousey!~wtfisme@ross154.net) has joined #mythtv | |
[17:28:16] | wagnerrp: | h7252: still a user configuration error |
[17:30:14] | kormoc is now known as kormoc_afk | |
[17:30:57] | h7252: | the question then is why is there code that tries to define/infer/find modules_path if the user has to set it up anyways? |
[17:32:32] | wagnerrp: | h7252: the code defines modules_path on its own, the user does not need to do anything |
[17:33:25] | wagnerrp: | there is a configuration issue elsewhere, that results in that code not being run, that value not being defined, and thats just where the problem is visible |
[17:33:27] | h7252: | so then the code does not work unless the user defines it, which is why I'm here. I'm trying to understand the situation and notify the correct ppl about it |
[17:34:38] | h7252: | I insatlled the packackes from debian-multimedia and that was my experience |
[17:36:01] | wagnerrp: | this is still a user configuration issue, and no a developmental issue, so it should be handled in the user support channel |
[17:37:48] | h7252: | wagnerrp: thanks I'll try in #mythtv-users |
[17:44:12] | skd5aner (skd5aner!~skd5aner@cpe-069-132-082-180.carolina.res.rr.com) has joined #mythtv | |
[17:44:45] | jamesba (jamesba!~jamesba@132.185.140.26) has quit (Quit: Leaving) | |
[17:49:51] | skd5aner (skd5aner!~skd5aner@cpe-069-132-082-180.carolina.res.rr.com) has quit (Read error: Connection reset by peer) | |
[17:50:06] | skd5aner (skd5aner!~skd5aner@cpe-069-132-082-180.carolina.res.rr.com) has joined #mythtv | |
[17:54:20] | xris (xris!~xris@xris.forevermore.net) has joined #mythtv | |
[18:06:53] | jarle (jarle!~jarle@70.84-234-133.customer.lyse.net) has quit (Remote host closed the connection) | |
[18:14:41] | kormoc_afk is now known as kormoc | |
[18:16:00] | jarle (jarle!~jarle@70.84-234-133.customer.lyse.net) has joined #mythtv | |
[18:19:06] | elmojo (elmojo!~elmojo@unaffiliated/elmojo) has quit (Remote host closed the connection) | |
[18:22:23] | pc600 (pc600!~awfe@96.18.250.229) has joined #mythtv | |
[18:22:27] | pc600 (pc600!~awfe@96.18.250.229) has left #mythtv () | |
[18:26:27] | elmojo (elmojo!~elmojo@cpe-075-177-177-233.nc.res.rr.com) has joined #mythtv | |
[18:26:27] | elmojo (elmojo!~elmojo@cpe-075-177-177-233.nc.res.rr.com) has quit (Changing host) | |
[18:26:27] | elmojo (elmojo!~elmojo@unaffiliated/elmojo) has joined #mythtv | |
[18:29:57] | xris (xris!~xris@xris.forevermore.net) has quit (Changing host) | |
[18:29:57] | xris (xris!~xris@mythtv/developer/xris) has joined #mythtv | |
[19:02:52] | Goga777 (Goga777!~Goga777@shpd-95-53-187-18.vologda.ru) has joined #mythtv | |
[19:08:31] | Beirdo: | okolsi: check #9421 when you have a chance |
[19:34:18] | jmartens (jmartens!~jmartens@s5595e03d.adsl.wanadoo.nl) has joined #mythtv | |
[19:44:02] | Goga777 (Goga777!~Goga777@shpd-95-53-187-18.vologda.ru) has quit (Ping timeout: 255 seconds) | |
[19:47:17] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[19:54:17] | stuartm: | just an FYI would could save hours of pain – 'git reset' won't revert a move correctly, instead it deletes the new file and doesn't restore the old file |
[19:54:46] | stuartm: | i.e. wiping out all your changes |
[19:55:10] | laga: | :/ |
[19:56:01] | iamlindoro: | you just used it wrong, dummy |
[19:56:53] | iamlindoro: | you forgot --esothericcommandlineswitch |
[20:58:25] | h7252 (h7252!~h725@62-47-250-205.adsl.highway.telekom.at) has quit (Ping timeout: 265 seconds) | |
[21:09:45] | stuartm: | iamlindoro: what are we using libxml2 for? |
[21:09:58] | iamlindoro: | it's a dependency of libbluray's metadata parsing |
[21:10:06] | stuartm: | ok, thanks |
[21:10:09] | iamlindoro: | np |
[21:10:14] | iamlindoro: | It isn't required |
[21:10:26] | iamlindoro: | libbluray will just return no metadata |
[21:10:34] | iamlindoro: | but outside of that it's safe not to have it |
[21:10:37] | stuartm: | probably read the commit message but it didn't sink in |
[21:11:07] | stuarta: | so an interesting data point |
[21:11:14] | h7251 (h7251!~h725@62-47-247-161.adsl.highway.telekom.at) has joined #mythtv | |
[21:11:19] | stuarta: | on my 0.24-fixes frontend |
[21:11:23] | stuartm: | spiked my curiosity since QT does xml parsing, but obviously that doesn't help here |
[21:11:39] | iamlindoro: | stuartm: Yeah, for some reason they didn't want to suck in Qt as a dep to the lib ;) |
[21:11:46] | stuarta: | when it gets stuck doing "Waited 100ms for video buffers..." |
[21:11:51] | j-rod (j-rod!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has quit (Ping timeout: 240 seconds) | |
[21:11:53] | stuartm: | iamlindoro: understandable |
[21:11:57] | stuarta: | shows 1 of the frontend threads in futex_wait |
[21:12:20] | stuarta: | so i think we might have a bit of an issue with mutexes |
[21:12:26] | stuartm: | iamlindoro: mildly annoying to be linking two XML parsers, but we can't do anything about it |
[21:12:48] | iamlindoro: | yeah, I felt the same displeasure but all things considered it's a small annoyane |
[21:12:51] | iamlindoro: | er annoyance |
[21:13:22] | stuartm: | stuarta: I can repro a lockup with 0.25 and livetv, I just don't use livetv enough to care about debugging it |
[21:13:40] | stuarta: | the is recording playback |
[21:13:43] | stuarta: | this |
[21:13:52] | stuarta: | its bloody annoying |
[21:13:58] | stuarta: | since it worked with earlier version |
[21:14:09] | stuarta: | 0.22 iirc |
[21:14:21] | stuartm: | linux or osx? |
[21:14:31] | stuarta: | linux |
[21:14:54] | stuarta: | mainly bbc content |
[21:15:04] | stuarta: | which is probably a bit higher bitrate |
[21:15:11] | stuartm: | then that is interesting since I'm not aware of any other reports |
[21:15:26] | stuartm: | local/remote – wired/wireless? |
[21:15:36] | stuarta: | remote via nfs |
[21:15:38] | stuarta: | wired |
[21:16:23] | stuarta: | i think i'll test out the patch which is mentioned as "coming soon" on the mailing list today |
[21:16:31] | stuarta: | when it turns up? |
[21:16:56] | j-rod (j-rod!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has joined #mythtv | |
[21:20:28] | ** stuarta heads out ** | |
[21:21:46] | dekarl1 (dekarl1!~deKarl@e180137134.adsl.alicedsl.de) has joined #mythtv | |
[21:23:26] | dekarl (dekarl!~deKarl@e180128032.adsl.alicedsl.de) has quit (Ping timeout: 276 seconds) | |
[21:26:08] | Jordack (Jordack!~jordack@h69-131-44-221.mdsnwi.tisp.static.tds.net) has quit (Quit: Screw You Guys I'm Going Home) | |
[21:33:55] | Splat1 (Splat1!~Splat1@rf1.splat1.com) has quit (Ping timeout: 255 seconds) | |
[21:35:33] | mike|2 (mike|2!~mike@c-24-21-63-118.hsd1.or.comcast.net) has quit (Remote host closed the connection) | |
[21:35:54] | Splat1 (Splat1!~Splat1@rf1.splat1.com) has joined #mythtv | |
[21:36:10] | mike (mike!~mike@24.21.63.118) has joined #mythtv | |
[21:36:37] | mike is now known as Guest64252 | |
[21:42:17] | Guest64252 (Guest64252!~mike@24.21.63.118) has quit (Remote host closed the connection) | |
[21:43:10] | mike|3 (mike|3!~mike@c-24-21-63-118.hsd1.or.comcast.net) has joined #mythtv | |
[21:46:46] | mike|3 (mike|3!~mike@c-24-21-63-118.hsd1.or.comcast.net) has quit (Remote host closed the connection) | |
[21:48:55] | stuartm: | does anyone know how well pull --rebase handles moved files in the incoming changes? |
[21:49:13] | stuartm: | i.e. before I spectacularly destroy weeks of work? |
[21:51:19] | elmojo: | I would backup your entire check out before trying that even if someone tells you it is fine |
[21:53:38] | Captain_Murdoch: | ditto |
[21:54:50] | sphery: | I keep unified diff patches as my backup for the same reason I use SQL-based DB backups. :) |
[21:55:51] | elmojo: | sphery: what is your preferred command for generating a diff of all things committed plus uncommitted changes that haven't been pushed? |
[21:55:53] | Captain_Murdoch: | sphery, yeah, but even those miss new files you haven't added/committed yet. |
[21:56:52] | iamlindoro: | I've had git destry the path on a git stash/git pull/git stash pop, spectacularly, multiple times |
[21:56:58] | iamlindoro: | er destroy the patch |
[21:57:21] | stuartm: | I could avoid the --rebase but then my ability to test the changes is severely limited as I have to do a complete rebuild and hope that the db schema doesn't get incremented |
[21:57:26] | sphery: | I'm still using quilt, so it's maintaining all my stuff for me. When I diff against the "official" repo, I do: git diff origin/master HEAD (or origin/fixes/0.24), but I think that only gets the committed stuff |
[21:57:29] | iamlindoro: | So I've taken to just git diff > file, and rebuild from the ground up |
[21:58:10] | elmojo: | sphery: that's cheating :) |
[21:58:35] | stuartm: | I guess I could duplicate the branch and experiment |
[21:58:36] | sphery: | heh, this is why I didn't feel a need to fight the VCS wars :) |
[22:00:19] | elmojo: | stuartm: yes, it seems it's a common practice for people to maintain a pristine branch and then develop on a local branch and cherry-pick changes to the pristine branch for pushing/testing purposes |
[22:02:15] | stuartm: | if all else fails I'll go old school, create a patch, revert to a clean tree, pull the changes then manually edit the paths in the patch before re-applying |
[22:05:02] | stuartm: | well except the changes include binary files which can't be diff'd |
[22:10:59] | mike|3 (mike|3!~mike@c-24-21-63-118.hsd1.or.comcast.net) has joined #mythtv | |
[22:12:18] | jmartens (jmartens!~jmartens@s5595e03d.adsl.wanadoo.nl) has quit (Quit: Leaving.) | |
[22:18:03] | stuartm: | fwiw, this library rename push is going to include an origin/master merge commit, I really am not comfortable trying to rebase that one |
[22:19:51] | j-rod (j-rod!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has quit (Ping timeout: 240 seconds) | |
[22:25:15] | j-rod (j-rod!~jarod@static-72-93-233-2.bstnma.fios.verizon.net) has joined #mythtv | |
[22:36:14] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 276 seconds) | |
[22:50:54] | j-rod is now known as j-rod|afk | |
[22:59:48] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 248 seconds) | |
[23:03:45] | Beirdo: | stuartm: understandable :) |
[23:07:27] | stuartm: | it's not nearly as bad as you might imagine, but it still involves moved files and a touches a lot more files, if only to correct comments which reference libmythdb |
[23:07:52] | Beirdo: | yeah. Thanks for taking that on, BTW |
[23:10:56] | Kunalagon (Kunalagon!~Kunalagon@212.200.243.36) has quit (Quit: Leaving.) | |
[23:17:15] | stuartm: | markk_, jannau, dblain: any objection to the rename? I'm only holding off to ensure that everyone has been given time to read the email and reply if necessary |
[23:18:56] | a1fa (a1fa!~a1fa@unaffiliated/a1fa) has joined #mythtv | |
[23:19:45] | a1fa: | hey i had a kid beat on the keyboard of mythtv-frontend and now there are no recorded shows showing up |
[23:19:50] | a1fa: | what could've he messed up? |
[23:19:58] | a1fa: | even the movie database has been wiped out |
[23:20:01] | a1fa: | all the files are there |
[23:21:16] | sphery: | a1fa: http://www.mythtv.org/wiki/Frequently_Asked_Q . . . ecordings.3F , pehaps? |
[23:21:27] | sphery: | perhaps, even |
[23:21:50] | sphery: | now a1fa wonders if I'm from Boston |
[23:23:01] | andreax (andreax!~andreaz@p57B94E16.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[23:23:58] | a1fa: | i'll try that |
[23:24:06] | a1fa: | i gave my mythtv box away to friends with a small child |
[23:24:09] | ** kormoc wonders if a1fa will move to the correct channel if it doesn't work ** | |
[23:24:18] | a1fa: | er :) |
[23:24:23] | a1fa: | yes |
[23:24:25] | a1fa: | sorry |
[23:24:30] | a1fa: | i forgot.. this is the dev channel |
[23:24:43] | a1fa: | moved ;) thanks for the tip kormoc |
[23:24:55] | a1fa (a1fa!~a1fa@unaffiliated/a1fa) has left #mythtv () | |
[23:27:59] | kierank (kierank!~kierank@78-105-80-74.zone3.bethere.co.uk) has quit (Quit: kierank) | |
[23:32:02] | h7251 (h7251!~h725@62-47-247-161.adsl.highway.telekom.at) has quit (Ping timeout: 240 seconds) | |
[23:40:42] | markk_: | stuartm: no objections from me |
[23:52:35] | stuartm: | ok realistically everyone who is likely to have an outstanding patch touching that code has already spoken up, I know jannau is MIA and Daniel isn't doing anything atm |
[23:53:51] | kormoc is now known as kormoc_afk | |
[23:53:55] | kormoc_afk is now known as kormoc | |
[23:56:56] | kc (kc!~Casper@unaffiliated/kc) has quit (Remote host closed the connection) |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.