Hello,<br><br>I need to setup a streaming server to stream raw video from a camera (V4L source).<br>The video output format from the framegrabber is YUY2, and as this is a not supported format for rtpvrawpaw, so I've used ffmpegcolorspace to do a conversion from YUY2 to I420, but still I cannot read the stream.<br>
<br>I've tried the following pipeline (sent to test-launch application from the gst-rtsp sources):<br>( v4l2src ! video/x-raw-yuv,format=(fourcc)YUY2,width=720,height=576,framerate=25/1 ! ffmpegcolorspace ! video/x-raw-yuv,format=(fourcc)I420,width=720,height=576,framerate=25/1 ! rtpvrawpay name=pay0 pt=96 )<br>
but this is not working.<br><br>However, if I use the same pipeline, but replacing the source from "v4l2src" to "videotestsrc", like this:<br>( videotestsrc ! video/x-raw-yuv,format=(fourcc)YUY2,width=720,height=576,framerate=25/1 ! ffmpegcolorspace ! video/x-raw-yuv,format=(fourcc)I420,width=720,height=576,framerate=25/1 ! rtpvrawpay name=pay0 pt=96 )"<br>
everything works fine!<br><br>I don't understand what is wrong.<br clear="all">