User:Dov

From OLPC
Jump to: navigation, search

About me

I'm an hobbyist open source developer from Israel with lots of experience in C/C++, Gtk and Internationalization.

Notes

  • My OLPC is also sometimes suffering from the sticky control problem. :-( As I had someone bring in the OLPC for me from the US to Israel, I don't really know what to do about it. Tonight I opened up the OLPC and cleaned the area around the control key with alcohol. So far I have not seen any sticking. Let's hope it stays that way...
  • I've been running Firefox Beta 4 on my OLPC and it is working great!
  • I've written a couple of proof of concept games using goocanvas. Please see my download pages.

My OLPC downloads

See:

http://imagic.weizmann.ac.il/~dov/olpc/index.html

Work in progress

Turning autorepeat back on

Put the following in a script and run it to turn on autorepeat on all keyboard keys:

#!/bin/sh
xset r 9 r 220 \
     r 67 r 68 r 69 r 70 r 71 r 72 r 73 r 74 r 75 r 95 r 96 r 224 r 147\
     r 49 r 10 r 11 r 12 r 13 r 14 r 15 r 16 r 17 r 18 r 19 r 20 r 21\
     r 23 r 24 r 25 r 26 r 27 r 28 r 29 r 30 r 31 r 32 r 33 r 35 r 36\
     r 37 r 38 r 39 r 40 r 41 r 42 r 43 r 44 r 45 r 46 r 47 r 48 r 51\
     r 52 r 53 r 54 r 55 r 56 r 57 r 58 r 59 r 60 r 61 r 62 r 219\
     r 112 r 110 r 117 r 115\
     r 96  r 221 r 225 r 236\
     r 217 r 218 r 219 r 220 r 221 r 191 r 192 r 193\
     r 222 r 223 r 224 r 225 r 194 r 195 r 196\
     r 226 r 227 r 228 r 229 r 197 r 198 r 199\
     r 156 r 235

Turning off auto-lowering of screen brightness

  •  ?

Remote video

To see the output of the video camera from a remote X-server use the following command:

ssh -X olpc
gst-launch-0.10 v4l2src \! xvimagesink

The frame rate received this way is about 3 frames per second. Is there a faster way?

The following command reduces the video size and thus increases the frame rate so that it yields a "live video" effect:

gst-launch-0.10 v4l2src \!videoscale \!video/x-raw-yuv,width=320,height=240 \
    \! xvimagesink

Still need to transfer sound and record the output remotely.