The Following 15 Users Say Thank You to lntalm For This Useful Post: | ||
Aisu, Benson, cesarcardoso, codeMonkey, DJArty, EIPI, ioan, Justjoe, mtron, Nikem, qole, qwerty12, speculatrix, ukki, vkv.raju |
|
2009-01-17
, 17:43
|
|
Posts: 1,562 |
Thanked: 349 times |
Joined on Jun 2008
|
#2
|
|
2009-01-18
, 01:56
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#3
|
|
2009-01-18
, 08:28
|
Posts: 755 |
Thanked: 406 times |
Joined on Feb 2008
@ UK
|
#4
|
|
2009-01-18
, 09:46
|
Posts: 3 |
Thanked: 15 times |
Joined on Sep 2008
@ France
|
#5
|
First, I think it is cool to use the camera this way.
However, why not just run aMSN on the tablet?
|
2009-01-18
, 09:57
|
|
Posts: 4,930 |
Thanked: 2,272 times |
Joined on Oct 2007
|
#6
|
Because I prefer a big screen and a big keyboard if I am at home... And I don't know there was packages for aMSN. I'll try it.
|
2009-01-18
, 15:02
|
Posts: 37 |
Thanked: 33 times |
Joined on Feb 2008
@ Ukraine, Kharkiv
|
#7
|
|
2009-01-18
, 15:36
|
Posts: 37 |
Thanked: 33 times |
Joined on Feb 2008
@ Ukraine, Kharkiv
|
#8
|
|
2009-01-19
, 01:10
|
|
Posts: 1,562 |
Thanked: 349 times |
Joined on Jun 2008
|
#9
|
|
2009-01-20
, 17:05
|
Posts: 43 |
Thanked: 22 times |
Joined on May 2008
@ EU
|
#10
|
mplayer tv:// -fps 15 -tv device=/dev/video1:driver=v4l:input=1:width=320:height=240
The way to do it is to use the gstreamer to send the webcam data over the network, then to use again gstreamer and the vloopback on the desktop side to emulate a v4l2 device.
In this message, $N800_HOST and $DESKTOP_HOST are the n800 and desktop IP. N800 and Desktop computer are on the same wifi LAN.
1. N800, send the image over network
You need first to install the package :
gstreamer0.10-plugins-extra
Then, you can ensure that the following command doesn't throw any error. This command blocks, you can then stop with ctrl-C :
You need to compile the vloopback module. This module can be found on this page : http://www.lavrsen.dk/twiki/pub/Moti...ack-1.1.tar.gz
You need to patch this source because there aren't compatible with Linux > 2.6.24, so download also this patch :
http://data.likide.homelinux.org/vloopback-1.1.patch
Go to the folder where you have put these files, ensure you have the correct tools to build linux module (gcc and linux headers files), then :
Change the permission of these files
To send the data into the the vloopback device, you need a specific gstreamer plugin.
Download it here : http://data.likide.homelinux.org/gst...ack-0.1.tar.gz
Compile it (you need the gstreamer devel packages) :
gst-inspect-0.10 |grep vloopbacksink
4. Plug all the elements
Run the command seen in 1. (N800)
On the desktop, run :
You can use amsn with /dev/video1 as the webcam source.
Known issues