romanianusa
|
2009-12-28
, 17:29
|
Posts: 739 |
Thanked: 114 times |
Joined on Sep 2009
|
#21
|
|
2009-12-28
, 17:47
|
Posts: 21 |
Thanked: 14 times |
Joined on Dec 2009
@ Turku, Finland
|
#22
|
|
2010-02-10
, 21:37
|
|
Posts: 2,361 |
Thanked: 3,746 times |
Joined on Dec 2007
@ Berlin - Love this city!!
|
#23
|
root apt-get install gstreamer-tools
gst-launch v4l2src device=/dev/video1 ! autovideosink
gst-launch v4l2src device=/dev/video0 ! autovideosink
|
2010-02-24
, 16:42
|
|
Posts: 63 |
Thanked: 123 times |
Joined on Oct 2009
@ Zürich
|
#24
|
|
2010-03-08
, 02:26
|
Posts: 113 |
Thanked: 22 times |
Joined on Feb 2010
@ Venezuela
|
#25
|
|
2010-03-13
, 16:52
|
|
Posts: 100 |
Thanked: 240 times |
Joined on Feb 2010
@ The South Pole O.o
|
#26
|
gst-launch v4l2src device=/dev/video1 ! videoscale ! video/x-raw-yuv,width=320,height=240 ! ffmpegcolorspace ! smokeenc ! udpsink host=192.168.1.255 port=1234
gst-launch udpsrc port=1234 ! smokedec ! autovideosink
|
2010-03-14
, 09:41
|
|
Posts: 2,361 |
Thanked: 3,746 times |
Joined on Dec 2007
@ Berlin - Love this city!!
|
#27
|
I got it to work by doing this:
on the phone
Code:gst-launch v4l2src device=/dev/video1 ! videoscale ! video/x-raw-yuv,width=320,height=240 ! ffmpegcolorspace ! smokeenc ! udpsink host=192.168.1.255 port=1234
on my computer
now with mencoder I think we'll be able to set that stream as a virtual video device on the desktopCode:gst-launch udpsrc port=1234 ! smokedec ! autovideosink
|
2010-03-23
, 12:26
|
Posts: 4 |
Thanked: 9 times |
Joined on Jan 2010
@ Buenos Aires, Argentina
|
#28
|
#!/bin/sh gst-launch v4l2src device=/dev/video$1 ! videoscale! video/x-raw-yuv,width=320,height=240,framerate=30/1 ! ffmpegcolorspace ! jpegenc ! tcpserversink host=$2 port=5000
#!/bin/sh gst-launch tcpclientsrc host=$1 port=5000 ! jpegdec ! autovideosink
|
2010-03-23
, 12:41
|
|
Posts: 2,361 |
Thanked: 3,746 times |
Joined on Dec 2007
@ Berlin - Love this city!!
|
#29
|