Hello,<br><br>I&#39;m new in using GStreamer libraries. I want to send an AVI stream (DivX5.0 without audio) using RTP on Windows. I&#39;ve tried the following command:<br><br>gst-launch-0.10 filesrc location=C:/Proyecto/Teinemat/GStreamer/Test2/debug/Pelicula.avi !video/x-msvideo !ffdemux_avi !video/mpeg4 !ffdec_mpeg4 !ffenc_mpeg2video ! ffmux_mpegts ! rtpmp2tpay pt=96 ! udpsink host=<a href="http://127.0.0.1">127.0.0.1</a> port=5000 sync=false<br>
<br>, but I get this:<br><br>Setting pipeline to PAUSED ...<br>Pipeline is PREROLLING ...<br><br>and it stays in this state, but never finishes! i&#39;ve also tried other commands, like this one:<br><br>gst-launch-0.10 uridecodebin uri=file://C:/Proyecto/Teinemat/GStreamer/Test2/debug/Pelicula.avi !ffenc_h263p ! video/x-h263 ! rtph263ppay pt=96 ! udpsink host=<a href="http://127.0.0.1">127.0.0.1</a> port=5000 sync=false<br>
<br>, but in this case, I get:<br><br>Setting pipeline to PAUSED ...<br>Pipeline is PREROLLING ...<br>ERROR: from element /pipeline0/uridecodebin0/source: Internal data flow error.<br>Additional debug info:<br>E:\devel-release\src_releases\gstreamer\libs\gst\base\gstbasesrc.c(2165): (function) (): /pipeline0/uridecodebin0/source: streaming task paused, reason not-linked (-1)<br>
ERROR: pipeline doesn&#39;t want to preroll.<br>Setting pipeline to NULL ...<br>FREEING pipeline ...<br><br>How can I do that? Thank you<br>