BLZbubba | is there an easy way to convert an mpeg .ts to a regular program stream? | 15:33 |
---|---|---|
BLZbubba | looks like it is buried in libdvb-dev, but you have to install the source and build the dvb-mpegtools directory | 15:53 |
BLZbubba | why wouldn't they just build those tools and put them in a deb in the repository? | 15:53 |
ernstp | When I upgraded my mythtv from Lucid to Maverick my M$ remote control started behaving strange | 17:03 |
ernstp | it works, it's just that the buttons have changed to a very bad configuration | 17:06 |
superm1 | BLZbubba, i'd file a bug against that source package. surely that can be done | 17:09 |
superm1 | #ubuntu-bug libdvb-dev | 17:09 |
superm1 | that should do it for you | 17:09 |
superm1 | ernstp, check and make sure lirc is still installed. it might have reverted to the native support that's available if lirc is no longer installed, or if it's not working properly | 17:10 |
superm1 | if lirc is installed, make sure lirc-modules-source isn't | 17:10 |
superm1 | there's been problems reported on that | 17:10 |
ernstp | right, thanks superm1 | 17:10 |
ernstp | I'm guessing something like that because the volume keys are picked up by the desktop | 17:11 |
superm1 | eventually the native support will be used instead, but we're not there yet | 17:11 |
ernstp | aha | 17:12 |
ernstp | well lirc was installed | 17:12 |
ernstp | I did dpkg-reconfigure lirc | 17:12 |
ernstp | superm1, think that helps? | 17:12 |
superm1 | it could potentially, dpeending what the root cause is here | 17:12 |
superm1 | lirc-modules-source isn't installed right? | 17:13 |
ernstp | * Loading LIRC modules [ OK ] | 17:13 |
ernstp | * Unable to load LIRC kernel modules. Verify your | 17:13 |
ernstp | * selected kernel modules in /etc/lirc/hardware.conf | 17:13 |
ernstp | correct, it's not installed | 17:13 |
superm1 | then are you running a non-ubuntu kernel perhaps? | 17:13 |
ernstp | nope | 17:13 |
superm1 | or like a mainline kernel? | 17:13 |
superm1 | hm, okay, then check out dmesg for errors about lirc | 17:14 |
superm1 | it should say why they couldn't load | 17:14 |
ernstp | is there special lirc work in ubuntu kernel? | 17:14 |
ernstp | perhaps they were already loaded... | 17:14 |
superm1 | yes there is a special patchset in the ubuntu kernel that wasn't in mainline at the time of 10.10 launch | 17:14 |
superm1 | it's there for 2.6.37 though now | 17:15 |
superm1 | the module name is 'mceusb' and 'lirc_dev' | 17:15 |
superm1 | so look for errors in dmesg about that | 17:15 |
ernstp | superm1, it works now! | 17:16 |
ernstp | though now there's superfast key repeat | 17:16 |
ernstp | nice with key repeat though! it's just too fast | 17:17 |
superm1 | it might still be picking up the native support | 17:19 |
superm1 | are the keys working outside myth still? | 17:20 |
ernstp | superm1, oh I see | 17:21 |
ernstp | yes | 17:21 |
superm1 | look at "cat /sys/class/rc/rc0/protocols" | 17:21 |
ernstp | and I get two keypresses | 17:21 |
superm1 | if native support was disabled it would look like this: | 17:21 |
superm1 | rc5 nec rc6 jvc sony [lirc] | 17:21 |
superm1 | that's what the lirc init script does these days | 17:22 |
superm1 | it loads the kernel modules, disables native support and then starts lircd | 17:22 |
ernstp | cat /sys/class/rc/rc0/protocols | 17:22 |
ernstp | [rc-5] [nec] [rc-6] [jvc] [sony] [lirc] | 17:22 |
ernstp | so not | 17:22 |
superm1 | yup all still enabled | 17:22 |
superm1 | /etc/init.d/lirc stop | 17:22 |
superm1 | and then | 17:22 |
superm1 | /etc/init.d/lirc start | 17:22 |
superm1 | should hopefully reset all of it | 17:22 |
ernstp | doesnt.... | 17:23 |
ernstp | lsmod | grep lirc | 17:23 |
ernstp | ir_lirc_codec 12859 0 | 17:23 |
ernstp | lirc_dev 19232 1 ir_lirc_codec | 17:23 |
ernstp | ir_core 26452 12 ir_lirc_codec,rc_tt_1500,rc_rc6_mce,ir_sony_decoder,ir_jvc_decoder,mceusb,ir_rc6_decoder,budget_ci,ir_rc5_decoder,ir_nec_decoder | 17:23 |
ernstp | dmesg | grep -i lirc | 17:23 |
ernstp | [ 14.514441] lirc_dev: IR Remote Control driver registered, major 250 | 17:23 |
ernstp | [ 14.526469] rc rc0: lirc_dev: driver ir-lirc-codec (mceusb) registered at minor = 0 | 17:23 |
ernstp | [ 14.526473] IR LIRC bridge handler initialized | 17:23 |
superm1 | you might want to add a 'set -x' in the lirc init script | 17:24 |
ernstp | it had the wrong module name | 17:28 |
ernstp | it was looking for lirc_mceusb but it's only mceusb | 17:28 |
ernstp | superm1, now the init script runs without errors, but it's still not working | 17:30 |
superm1 | that's weird it had the wrong module name though | 17:30 |
superm1 | the dpkg-reconfigure should have fixed that | 17:30 |
superm1 | so check out the lines where it's trying to disable all the other types, does something look out of wack for your setup there? | 17:31 |
ernstp | looked for that... how does it look? | 17:31 |
superm1 | well it should be calling "in_kernel_support" "disable" | 17:32 |
ernstp | "in_kernel_support" | 17:32 |
ernstp | right | 17:32 |
ernstp | ! | 17:32 |
Zinn | Sorry I don't know about | 17:33 |
superm1 | you can try running that stuff manually in your own shell script, but it's pretty straightforward... | 17:33 |
ernstp | superm1, oh, there's no /sys/devices/virtual/rc/ directory :-) | 17:36 |
superm1 | wha? | 17:36 |
superm1 | how's that possible... | 17:36 |
ernstp | superm1, did I mention I continued to natty after maverick? | 17:36 |
superm1 | lol | 17:36 |
ernstp | superm1, so it's 2.6.37 | 17:37 |
superm1 | yeah i think you conveniently left out that part :) | 17:37 |
ernstp | superm1, oh! :-) | 17:37 |
superm1 | so modify the init script to use the new directory, which i'm guessing is only in /sys/class or so | 17:37 |
superm1 | and please get a bug filed about this against the lirc source package | 17:37 |
ernstp | superm1, well the original problem happened when I upgraded to maverick | 17:37 |
ernstp | amd we | 17:37 |
ernstp | and we're still solving a real problem :-) | 17:38 |
ernstp | yes, of course! | 17:38 |
superm1 | i'm glad to hear of people in myth* community actually testing natty early, that's great | 17:38 |
ernstp | ls -l /sys/class/rc/ | 17:38 |
ernstp | rc0 -> ../../devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.0/rc/rc0 | 17:38 |
ernstp | rc1 -> ../../devices/pci0000:00/0000:00:14.4/0000:03:07.0/rc/rc1 | 17:39 |
ernstp | :-) | 17:39 |
ernstp | yeah your HTPC is not a system you want to upgrade when you've got it working | 17:40 |
superm1 | on maverick, it's | 17:40 |
superm1 | lrwxrwxrwx 1 root root 0 2011-01-06 11:21 rc0 -> ../../devices/virtual/rc/rc0 | 17:40 |
superm1 | yeah that's unfortunately the problem that we see, people dont upgrade until like RC | 17:40 |
superm1 | and then find all sorts of bugs at inconvenient times to fix them | 17:40 |
ernstp | cat /sys/class/rc/rc0/protocols | 17:40 |
ernstp | [rc-5] [nec] [rc-6] [jvc] [sony] [lirc] | 17:40 |
ernstp | ernst@dront:~$ cat /sys/class/rc/rc1/protocols | 17:40 |
ernstp | [builtin] | 17:40 |
superm1 | or worse, they dont upgrade at all, and we dont find out until new people do fresh installs | 17:40 |
ernstp | superm1, you part of the mythbuntu team then I guess? | 17:47 |
superm1 | yeah | 17:47 |
kb3ien | just installed mythbuntu.. i need to configure my network devices, but i'm not sure what the mythtv passwd for sudo is... | 17:50 |
tgm4883 | kb3ien, it's the password you set during install | 17:50 |
ernstp | kb3ien, the thing with sudo is that it's your own password | 17:51 |
kb3ien | doh. didnt see myself setting one.... | 17:51 |
kb3ien | nevr mind, i did. something simple... | 17:51 |
kb3ien | i'm trying it with roku for a front end... wish me luck. | 17:52 |
kb3ien | vi is installed but it's got issues... | 17:55 |
kb3ien | sudo xterm helpd lots. | 17:56 |
superm1 | the vi installed is part of vi-tiny i think | 17:56 |
ernstp | it's vim-tiny or something right? | 17:56 |
superm1 | there is a full one in the archive | 17:56 |
ernstp | hehe :-) | 17:56 |
ernstp | superm1, #698208 | 17:58 |
superm1 | bug 698208 | 17:58 |
superm1 | thanks | 17:58 |
Zinn | Bug 698208 in lirc (Ubuntu) "lirc init script doesn't disable other methods on natty" [Undecided, New] http://www.launchpad.net/bugs/698208 | 17:58 |
ernstp | superm1, patch attached | 17:59 |
superm1 | thanks, i might muck with a little more based on what j-rod said, but i'll attribute you for the original | 18:00 |
ernstp | what did j-rod say? :-) | 18:01 |
superm1 | ernstp, http://pastebin.com/w5MvxNwJ | 18:05 |
Zinn | [pastebin.com] === modified file 'debian/changelog' --- debian/ch - Supermario | 18:05 |
superm1 | can you give that a shot? it's an adaptation of what you said mixed with what j-rod was recommending | 18:05 |
ernstp | find /sys/class/rc/ -name protocols doesn't work | 18:07 |
ernstp | find doesn't follow links | 18:07 |
superm1 | oh i didn't use your whole path | 18:07 |
ernstp | that's why I had rc/*/ | 18:07 |
superm1 | okay so putting in your path instead, is everything else good with that? | 18:07 |
superm1 | my bad | 18:07 |
ernstp | yeah, looks good | 18:08 |
ernstp | assuming echo "lirc" works, not familiar with the interface... | 18:09 |
superm1 | that's what j-rod said should work | 18:10 |
superm1 | since you're already on natty, i was hoping to use you as a guinnea pig to double check. i've only got it in VM's at this point | 18:10 |
ernstp | superm1, I can check tonight, busy for a while | 18:16 |
ernstp | superm1, back, let's see | 18:46 |
ernstp | superm1, it works | 18:49 |
superm1 | ernstp, spectacular, thanks | 20:09 |
kb3ien | so far so good. I dont recall setting a mysql password at install time, mythbuntu-10.10 is there a set password? | 21:11 |
rhpot1991 | /etc/mythtv/mysql.txt | 21:11 |
rhpot1991 | will have it | 21:11 |
kb3ien | merci! | 21:16 |
kb3ien | php.roku is now generating http 200s! woo! | 21:16 |
kb3ien | all i need are some shows. can i make file shares available easily to mythtv? | 21:16 |
* kb3ien eyes a stack of dr who cdroms... | 21:17 | |
rhpot1991 | kb3ien: look at mythvideo | 21:18 |
kb3ien | looks kinda like what i want. storage groups are needed to share the content from the backend to the front end? | 21:25 |
rhpot1991 | kb3ien: thats the best way to do it | 21:25 |
rhpot1991 | you could share stuff out yourself with nfs but thats more of a pain | 21:25 |
kb3ien | its a case of wanting the roku to get the nfs shared files via the back end... | 21:27 |
kb3ien | if i put content in /var/lib/mythtv/videos it should become available on other front ends too? | 21:34 |
CNLiberal | So i'm trying to boot into the mythbuntu 10.10 32 bit CD...it loads just fine, but on reboot, it just sits at the Mythbuntu screen (with the 5 dots) | 23:39 |
CNLiberal | and just sits there...i can do a CTRL + ALT + DEL and it reboots fine | 23:40 |
tgm4883 | CNLiberal, if you hit esc, does it say what it is waiting on? | 23:40 |
CNLiberal | i tried hitting ESC, and it stays on the MYTHBUNTU screen | 23:40 |
CNLiberal | on a couple boots, I noticed an IVTV error | 23:40 |
CNLiberal | TVEEPROM cannot autodetect tuner or something like that...so i removed the PVR 250 and 350 cards | 23:41 |
CNLiberal | and did another reinstall...same issue | 23:41 |
CNLiberal | i have even tried the install from the "Try MythTV" live distro | 23:41 |
CNLiberal | still no go | 23:41 |
CNLiberal | i'll try rebooting and hit the ESC sooner | 23:43 |
CNLiberal | i can hit CTRL ALT DEL and it reboots fine...like it's a good reboot | 23:43 |
CNLiberal | That didn't do any good...let me try unplugging the second SATA drive i have in there...it's formatted as JFS, maybe myth hates that | 23:45 |
CNLiberal | same result... | 23:47 |
CNLiberal | so now I'm stumped...I'm gonna try to install the 10.10 full ubuntu | 23:47 |
CNLiberal | is that recommended or not? | 23:47 |
CNLiberal | Any other ideas guys? or should I try my full install idea? | 23:52 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!