[gst-devel] error in pipeline
Tim Müller
t.i.m at zen.co.uk
Sun Apr 20 17:16:20 CEST 2008
On Sun, 2008-04-20 at 15:33 +0530, Bob wrote:
Hi,
> my avi pipiline is giving an Internal data stream error. What could be
> the reason?
It's a wrong/broken pipeline.
> (under windows command prompt). Any suggestions for changing of any of
> the elements?
>
> C:\Program Files\Common Files\GStreamer\0.10\bin>gst-launch-0.10.exe
> filesrc location= C:/Files/globe.avi ! avidemux ! video/x-msvideo !
> directdrawsink
- video/x-msvideo is avidemux's input format, it does not
output that (see gst-inspect-0.10 avidemux)
- directdrawsink does not accept 'video/x-msvideo' as input
either, so even if avidemux did output that, it wouldn't
work. directdrawsink wants RGB video as input
(see gst-inspect-0.10 directdrawsink)
Try something like this:
gst-launch-0.10 filesrc location=... ! decodebin ! ffmpegcolorspace !
videoscale method=1 ! directdrawsink
Cheers
-Tim
More information about the gstreamer-devel
mailing list