error in pipeline

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

error in pipeline

Bob-278
hi,
 
my avi pipiline is giving an Internal data stream error. What could be the reason?
(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
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /pipeline0/avidemux0: Internal data stream error.
Additional debug info:
E:\devel-release\src_releases\gst-plugins-good\gst\avi\gstavidemux.c(3779): ??? (): /pipeline0/avidemux0:
streaming stopped, reason not-linked
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
FREEING pipeline ...
 
 
thanks
bob

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments contained in it. Contact your Administrator for further information.


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: error in pipeline

Tim-Philipp Müller-2
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




-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel