*** tpb has joined #hdmi2usb | 00:00 | |
mithro-work | CarlFK, ping? | 00:32 |
---|---|---|
CarlFK | mithro-work: pong | 00:33 |
mithro-work | CarlFK, so where are you at with your Atlys? | 00:33 |
CarlFK | good Q. having trouble tracking results.... | 00:34 |
mithro-work | "tracking results" ? | 00:35 |
CarlFK | like I think mplayer saves .png images of the test pattern, but then luvcview gives me a black window | 00:35 |
CarlFK | sec.. I have it here 1/2 hoked up.. | 00:36 |
CarlFK | oh, I don't know if the .png were left over from a previous run. .. let me delete them and try again | 00:36 |
mithro-work | CarlFK, ??? | 01:14 |
CarlFK | opps, - got distracted - just got 2 more volenterers for PyOhio | 01:15 |
CarlFK | back to Atlys | 01:15 |
CarlFK | mithro-work: instead of the test pattern, I get just green. uploading image | 01:19 |
*** iiie0 has quit IRC | 01:24 | |
mithro-work | CarlFK, long time to upload.... | 01:26 |
CarlFK | it up, but I can't find the URL | 01:29 |
CarlFK | ok, added an echo url to my upload script so this doesn't happen again | 01:30 |
CarlFK | mithro-work: http://veyepar.nextdayvideo.com/site_media/static/veyepar/temp/00000002.png | 01:30 |
tpb | <http://ln-s.net/-VYC> (at veyepar.nextdayvideo.com) | 01:30 |
mithro-work | CarlFK, and that is not what your system is producing? | 01:31 |
CarlFK | there is ho hdmi source - it should be the test pattern | 01:32 |
mithro-work | CarlFK, and you have the test pattern selected? | 01:32 |
CarlFK | http://paste.ubuntu.com/5886073/ shows what firmware and how I am grabbing | 01:33 |
tpb | Title: Ubuntu Pastebin (at paste.ubuntu.com) | 01:33 |
mithro-work | CarlFK, more usefully could you md5sum or sha1 the .bit/.hex and echo into the output? | 01:33 |
CarlFK | carl@dc10:~/tv$ md5sum hdmi2usb.bit hdmi2usb.hex | 01:34 |
CarlFK | 0845c836739577eec0629cab7c464f46 hdmi2usb.bit | 01:34 |
CarlFK | 1549cfb16f5e8b6837cb8446bd0f50ef hdmi2usb.hex | 01:34 |
mithro-work | at the sleep 5 | 01:35 |
mithro-work | do you unplug and replug the Atlys USB port? | 01:35 |
CarlFK | no - I stopped doing that a while ago | 01:36 |
mithro-work | Can you see if that makes a difference or not | 01:36 |
CarlFK | sure - but first - currently lsusb shows Bus 002 Device 011: ID fb9a:fb9a | 01:37 |
mithro-work | CarlFK, I'm unsure if it'll make a difference | 01:37 |
CarlFK | dmesg [177268.241312] uvcvideo: Found UVC 1.00 device HDMI2USB (fb9a:fb9a) | 01:37 |
CarlFK | mithro-work: no help - same green | 01:38 |
mithro-work | okay | 01:40 |
CarlFK | mithro-work: luvcview -d /dev/video1 just shows a window full of black | 01:42 |
mithro-work | CarlFK, yeah the green normally means transparency in mplayer | 01:43 |
CarlFK | mithro-work: are you familiar with vivi ? | 02:17 |
mithro-work | nope! | 02:17 |
CarlFK | http://veyepar.nextdayvideo.com/site_media/static/veyepar/temp/vivi.png | 02:17 |
tpb | <http://ln-s.net/-VZ$> (at veyepar.nextdayvideo.com) | 02:17 |
CarlFK | http://linuxtv.org/wiki/index.php/VIVI | 02:18 |
tpb | Title: VIVI - LinuxTVWiki (at linuxtv.org) | 02:18 |
CarlFK | sudo modprobe vivi | 02:22 |
CarlFK | mplayer -tv device=/dev/video2 tv:// -frames 2 -vo png | 02:22 |
CarlFK | mv 00000002.png vivi.png ... upload. | 02:23 |
CarlFK | luvcview -d /dev/video2 errored | 02:23 |
CarlFK | Unable to set frame rate: Invalid argument | 02:23 |
CarlFK | Init v4L2 failed !! exit fatal | 02:23 |
mithro-work | CarlFK, likely because luvcview is designed for UVC cameras.... | 02:24 |
CarlFK | ah - I figured the v4l api something | 02:25 |
mithro-work | ? | 02:29 |
CarlFK | I figured all v4l apps would work with the api, which would abstract away what kind of device it was | 02:30 |
mithro-work | CarlFK, the API is pretty large | 02:31 |
CarlFK | im not to worried about it | 02:31 |
CarlFK | just trying to get a feel for how to debug, or test what is expected to be working | 02:32 |
CarlFK | bb in 30 min - need to get pizza | 02:34 |
mithro-work | okay | 02:35 |
CarlFK | back .. eating pizza. is there anything i ca be doing withe te atlys? | 03:01 |
mithro-work | I don't know why your getting a black screen | 03:01 |
mithro-work | could you paste the complete output for that firmware load script? | 03:02 |
CarlFK | http://veyepar.nextdayvideo.com/site_media/static/veyepar/temp/fl.log | 03:06 |
tpb | <http://ln-s.net/-VZk> (at veyepar.nextdayvideo.com) | 03:06 |
CarlFK | how do I redirect stderr? | 03:06 |
CarlFK | something like ./fl.sh 2>&1 fl.log | 03:06 |
mithro-work | red 2>&1 | 03:09 |
mithro-work | no | 03:09 |
mithro-work | bah | 03:09 |
mithro-work | basically the redirects happen in order right | 03:09 |
mithro-work | so 2>&1 says "redirect FD 2 to FD 1" | 03:10 |
mithro-work | so you want | 03:10 |
mithro-work | ./fl.sh > f1.log 2>&1 | 03:10 |
mithro-work | order matters | 03:10 |
mithro-work | for example if you wanted stderr to go to stdout and have stdout go to a file you'd do | 03:10 |
mithro-work | ./fl.sh 2>&1 > fl.log | 03:11 |
mithro-work | can you make fxload be verbose too | 03:11 |
CarlFK | opps, coming up | 03:35 |
CarlFK | fxload is already very verbose - not sure how to do djtgcfg prog | 03:37 |
CarlFK | --verbose Display more detailed error messages. | 03:37 |
CarlFK | mithro-work: http://veyepar.nextdayvideo.com/site_media/static/veyepar/temp/fl.log | 03:46 |
tpb | <http://ln-s.net/-VZk> (at veyepar.nextdayvideo.com) | 03:46 |
*** mithro has joined #hdmi2usb | 03:50 | |
CarlFK | mithro: http://veyepar.nextdayvideo.com/site_media/static/veyepar/temp/fl.log | 03:52 |
tpb | <http://ln-s.net/-VZk> (at veyepar.nextdayvideo.com) | 03:52 |
mithro-work | yes I saw | 04:37 |
mithro-work | your fxload is way more verbose then the one I use | 04:37 |
mithro-work | CarlFK, I assume you where sensible and went to bed | 04:50 |
CarlFK | nope | 04:54 |
CarlFK | but soon | 04:54 |
*** mithro has quit IRC | 04:54 | |
*** mithro-work has quit IRC | 05:13 | |
*** mithro-work has joined #hdmi2usb | 05:13 | |
*** iiie has joined #hdmi2usb | 06:19 | |
*** shenki_ is now known as shenki | 08:29 | |
*** mithro has joined #hdmi2usb | 12:50 | |
*** mithro has quit IRC | 12:55 | |
*** CarlFK has quit IRC | 14:24 | |
*** iiie0 has joined #hdmi2usb | 16:11 | |
*** iiie0 has quit IRC | 16:40 | |
*** iiie0 has joined #hdmi2usb | 17:28 | |
*** parx1 has joined #hdmi2usb | 18:14 | |
*** parx has quit IRC | 18:15 | |
*** parx1 is now known as parx | 18:15 | |
*** shenki has quit IRC | 18:47 | |
*** shenki has joined #hdmi2usb | 18:55 |
Generated by irclog2html.py 2.12.1 by Marius Gedminas - find it at mg.pov.lt!