I'm trying to get gstreamer to stream the camera module to a crtmpserver video server. I'm trying the following pipeline: Code: gst-launch -q mfw_v4lsrc ! x264enc byte-stream=true ! flvmux ! tcpclientsink host=192.168.1.20 port=6666 It ends up freezing the UDOO board, requiring a restart. However, the following test works: Code: gst-launch -q videotestsrc ! x264enc byte-stream=true ! flvmux ! tcpclientsink host=192.168.1.20 port=6666 What do I need to change in my pipeline?
I'm interested by any move on the topic too. (regarding the problem I have for using openCv with udoo webcam) What OS did you install ?
Try with Code: gst-launch-0.10 -q mfw_v4lsrc ! x264enc byte-stream=true ! flvmux ! tcpclientsink host=192.168.1.20 port=6666
Re: Gstreamer crashes udoo when trying to stream camera modu Nope, you tried: Code: gst-launch I suggested: Code: gst-launch-0.10 This is because in UDOOBuntu we have a different version of gstreamer, optimized for armhf... This is why you command is failing... We'll upgrade the doc accordingly.. Let me know!
Re: Gstreamer crashes udoo when trying to stream camera modu With either, I get: MFW_GST_V4LSRC_PLUGIN 3.0.8 build on Nov 19 2013 12:57:36. then udoo freezes. Is there a way to make it work using ffmpeg? I've tried using /dev/video0, but get an error.
Re: Gstreamer crashes udoo when trying to stream camera modu Take a look here: http://elinux.org/UDOO_Camera_Module UDOO Camera module is set on /dev/video7 when enabled...