[00:00] I have been working off and on with a guy in the linuxtv room getting it working [01:27] 2.6.24 [01:27] is the next one [01:27] yeah [01:28] * directhex upgrades his backend to gutsy [02:33] hey, I'm installing a 2nd hard drive and am having problems getting it to be a rw drive. [02:33] I modified fstab to mount it as rw but it still seems to be read only [02:36] it's a ext3 partition too [02:36] so it should be able to write === tritium_ is now known as tritium [08:02] hey all the sudden after my last reboot my mythtvbox loses the picture to my tv even though there is no screensaver [08:02] after sitting idle for a while [08:03] I have to log out of X and back in to get it back [10:15] anyone have any idea how to run commercial skip on a recording that did not record with commercial skipping activated? [10:22] I believe I just figured it out.. you can do it through the frontend [15:15] anyone have any luck w/pvr-350 tv-out? [15:23] tgm4883_laptop, are you around? [15:24] yep [15:24] I committed the first version to google codes's svn repository [15:24] nice, link? [15:24] with support for LiveTV, scheduled recordings and idle [15:25] http://mythbackend-notifier.googlecode.com/svn/trunk/trayicon.py [15:26] jakemonO, support is disappearing. the cons outweight the pros [15:26] just change the IP in there from http://192.168.178.23:6544/xml to the one from your BE [15:26] this notifier works fine here on gutsy (with gnome) [15:27] it now uses DOM since DOM's easier to use for navigation through the XML tree [15:28] tgm4883, it displays the title as a tooltip [15:29] arg, i feel like an idiot. is it just ./trayicon.py to run? [15:31] yes [15:33] hmm [15:33] ok, made executable, needs wx module [15:34] would that be python-wxgtk##? [15:35] i have libwxbase2.8-0 and libwxgtk2.8-0 installed [15:35] python-wxgtk2.6/gutsy uptodate 2.6.3.2.1.5ubuntu12 [15:35] python-wxversion/gutsy uptodate 2.8.4.0-0ubuntu3 [15:35] that's what I have installed here [15:36] I'll switch to wxgtk2.8 [15:36] i just installed 2.8 [15:37] so lets see what happens [15:38] hmm [15:38] doesn't appear to work. Let me go back to 2.6 [15:39] it works here with 2.8 [15:39] oh [15:39] it's just appears to hang for me [15:39] does it display an error msg? [15:39] nope [15:40] so it should work, you probably just don't see the icon [15:40] sounds about right [15:41] do I need to grab anything additional for that? [15:42] I added some debug output [15:42] svn up again please [15:46] :( nothing [15:47] dangit, sec [15:48] nope, still nothing [15:49] arg [15:49] nm [15:49] it works [15:49] i had only changed the first IP I saw [15:49] didn't know there was a second one [15:49] * tgm4883 smacks head [15:51] beavis, what tuner is it checking? [15:53] oops yes, sorry, yes, not the best coding ;) just wanted to add the title to the tooltip [15:53] tgm4883, it checks only for the first one, my idea is to use several icons for all tuners [15:54] hmm [15:54] my tuner 1 is recording, although it the notifier says no recording [15:59] beavis, what do you think about this. (idk, how hard it is to code though). What about having the main icon change to red if any tuner is recording, then if you click on it, a drop down menu listing the remaining encoders [16:04] tgm4883, check your xml file if there's a tag tgm4883, does it display the icon now? [16:05] it does display the icon [16:05] what was the issue? [16:05] i dont' have the code you requested [16:06] I have the color changing code though [16:06] but [16:06] it says recording == # [16:06] not state == # [16:06] the issue with the icon not showing up was not having the correct IP address in both areas [16:07] [16:07] [16:07] that's where it gets the state from [16:07] in trayicon.py or the xml file? [16:08] [16:08] thats my xml file [16:08] err [16:08] whats in it [16:08] but I can't tell where in the trayicon.py its looking for encoder 1 [16:09] well yes, it checks for the first tag hmm [16:10] then i wonder whats happening [16:10] def activeVideoDevices checks for the state [16:10] so you get a black icon? [16:11] yes [16:11] even though my first recorder (tuner 1) is recording [16:11] im wondering if it's this [16:11] elif recording == "4": [16:12] 4 means recording [16:12] 1 means LiveTV [16:12] shouldn't it be elif state == "4": [16:12] it's state in activeVideoDevices, in main it's mapped to recording [16:13] ah [16:16] well I deactivated my second encoder, I just need one at the moment, so I don't really know which one it takes [16:16] well let me fire up both other recorders and we will see [16:17] it really should create a list with the state for [16:17] the script was just planned as a quick workaround for my needs only ;-P [16:18] hmm [16:19] still black? [16:21] interesting [16:21] it was watching my last tuner [16:22] which (not that I think it matters) is on my slave backend [16:22] and is tuner 6 [16:22] I have tuner 1, tuner 2, and tuner 6 [16:22] and it was watching tuner 6 [16:23] interesting hnmm [16:26] http://www.oreilly.com/catalog/pythonxml/chapter/ch01.html <-- DOM and python [16:29] you could check for the first encoder only, like: if node.getAttribute("id")=="1" state=node.getAttribute("state") [16:29] (yes it's a quick hack ;) ) [16:32] Yea, i'll try that and see where we get. Ideally we want to check all tuners (or perhaps just backends). But isolating one is the first step i think [16:43] beavis, yep that works [16:45] beavis, stop me if this makes no sense (the only programing ive done is in java). But can we stick a for loop in there and increment the id#? [17:11] tgm4883, it *is* already a loop, I added some code now which lists all upcoming recording [17:11] tgm4883, svn up [17:12] tgm4883, do you use svn? It's easier than downloading [17:12] no, launchpad and bzr [17:12] i think ive used svn once [17:14] apt-get install subversion [17:15] and then [17:15] svn checkout http://mythbackend-notifier.googlecode.com/svn/trunk/ mythbackend-notifier-read-only [17:15] once and svn up after that [17:16] k [17:16] when I svn up [17:17] do I need to [17:17] svn up http://........ [17:19] beavis, remember, everything that i say could be wrong, im reading some stuff off the internet about python and my only coding experience is with java [17:19] but [17:20] can you stick target = ... before def activeVideoDevices( ): [17:20] then it should be a global variable [17:20] and we can get rid of the other two local target variables [17:20] you need only svn checkout once with the whole path [17:20] k [17:21] svn update (up) without then [17:21] i just tested the above target thing and it works for me [17:22] I use Eclipse as IDE, there is a nice python plugin for eclipse [17:23] but Gedit works fine as well [17:23] im looking at it in gedit, but I also have idle [17:24] installing eclipse now [17:24] eclipse-pydev is what you need [17:24] so would moving target work? or is there something else that would mess up? [17:24] this will give you code completion, the greatest thing in the world ;) [17:25] sure it should be defined globally [17:25] we probably need a class which puts all information into an object [17:25] to allow things like card[1].state.... [17:26] eclipse needs java [17:26] sun-java6-jre/gutsy uptodate 6-03-0ubuntu2 [17:27] I added some other stuff to the info line for the state. Not sure if you want it, but i'll post it here [17:28] actually, maybe we should take this to #ubuntu-mythtv-dev [17:28] as this is the support channel [17:29] we can create whatever we want ;) [17:30] or just use gtalk or something like this [17:31] well #ubuntu-mythtv-dev is the development channel, but whatever you want [17:31] here is the stuff i added [17:31] http://pastebin.com/m9ca44e4 [17:43] is there a way to tell mythbuntu to burn a movie to a cd or dvd? [17:44] something 'automated' [17:44] like mytharchive? [17:44] i haven't used that for movies though [17:44] i was thinking more of converting an avi to dvd [17:44] like mytharchive? [17:44] i will look into that [17:45] mytharchive should transcode it into whatever format you tell it to [17:45] so if i have a headless frontend will it use the burner on that backend? [17:46] why would you have a headless frontend? [17:46] seriously, whats the point? [17:46] save $ [17:46] and how do you travel through the menus? [17:46] no need to buy a hard drive [17:46] ? [17:46] i think headless may be the wrong term [17:46] sorry [17:46] what does a hard drive have to do with being without a monitor? [17:46] diskless [17:46] ah [17:47] im tired [17:47] i don't think it will work then [17:47] as it needs somewhere to store the transcoded material before it burns [17:47] couldn't it store it to an nfs share? [17:48] it could, but you still have one problem [17:48] now if you can nfs share the dvd burner [17:48] then maybe it will work [17:48] but this is probably uncharted territory [17:48] so you will need to have a compass and make a map of the new world :) [17:48] :) [17:52] beavis, i also think that it is showing my last scheduled recording twice [18:02] how does mythtv detect commercials? [18:05] mindframe-, it uses a variety of different methods [18:07] black frame detection, logo detection, etc [21:16] anyone have a gutsy ivtv-fb module compiled to share? [21:28] jakemonO, support is disappearing. the cons outweight the pros === claydoh_ is now known as claydoh [21:37] i got that, but i just hosed my machine and i'm rebuilding, so i was just wondering... [21:38] also, directhex, why do the cons outweigh the pros? [21:40] jakemonO, pros: it exists [21:40] cons: can only play mpeg, hell to set up, low resolution, poorly supported, no opengl support (myth is moving further & further towards gl for menus etc) [21:41] ah, so which tuner would be recommended? [21:42] you're not talking about a tuner [21:43] the 350 is fine as an analog mpeg2 capture card, it's worthless as a tv-out card [21:43] i'd go with my old edgy setup, but its been giving me problems with the sechedulesdirect [21:43] my 350 isnt a tuner? [21:44] your 350 is a tuner and a tv-out card [21:44] ivtv-fb would be required only for tv-out, so you're interested in using the junk portion [21:45] nobody would ever recommend a 350 to you now, unless it was second hand, and cheaper than a 150 [21:45] yes there is jakemonO [21:45] there is a thread on the forums detailing it [21:45] and you need to actiavte gutsy-proposed [21:46] for a fix that is in it [21:46] ah, i'll try that just as soon as I ensure that the module i just compiled doesnt work [21:46] (thanks superm1) [21:47] directhex: i'm using an old pc, so I was looking for a card that had hardware en/decode and video out to ease the cpu budren, any recommendations? (I also need a remote) [21:48] jakemonO, any graphics card. a $10 card will be infinitely better overall than a 350 for tv-out [21:48] hm [21:50] it needs component out [21:52] your 350 doesn't have component out, it has composite or svideo [21:52] Hello everyone [21:53] composite, thats what i mean [21:54] <> [21:54] I am having a problem connecting with a FE to my BE. MySQL errors saying hostname.local not allowed. However, I have the BE setup to allow from any host using the % in the privileges. [21:54] composite is the absolute bottom-of-the-range output option. petty much every card on the market will do composite out [22:19] superm1, I'm reading this thread: http://ubuntuforums.org/showthread.php?t=568074 === claydoh_ is now known as claydoh