Can someone run this pipe through gst-editor please

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

Can someone run this pipe through gst-editor please

art vanderhoff
Hi All,

Can someone run the below pipe through gst-editor and send me the output.
many thanks
Art
gstream@ccc2.com

gst-launch gstrtpbin name=rtpbin uridecodebin uri="rtsp://192.168.200.100:554/channel1" name=decode  decode. ! \
queue !  ! ffmpegcolorspace ! videoscale ! queue ! \
capsfilter caps="video/x-raw-yuv, format=(fourcc)AYUV, width=640, height=352, framerate=(fraction)25/1" ! \
ffmpegcolorspace ! videoscale ! capsfilter caps="video/x-raw-yuv, format=(fourcc)I420, width=640, height=352, framerate=\(fraction\)25/1, bpp=16, depth=16" ! \
filesink location="/home/myuser/fifo/pipe9.yuv"
Reply | Threaded
Open this post in threaded view
|

Re: Can someone run this pipe through gst-editor please

Tim-Philipp Müller-2
On Tue, 2012-03-06 at 03:02 -0800, art vanderhoff wrote:

Hi,

> Can someone run the below pipe through gst-editor and send me the output.
> many thanks

whata are you trying to achieve? No one's using or developing any of the
various gst-editors any more.

> gst-launch gstrtpbin name=rtpbin uridecodebin
> uri="rtsp://192.168.200.100:554/channel1" name=decode  decode. ! \
> queue !  ! ffmpegcolorspace ! videoscale ! queue ! \
> capsfilter caps="video/x-raw-yuv, format=(fourcc)AYUV, width=640,
> height=352, framerate=(fraction)25/1" ! \
> ffmpegcolorspace ! videoscale ! capsfilter caps="video/x-raw-yuv,
> format=(fourcc)I420, width=640, height=352, framerate=\(fraction\)25/1,
> bpp=16, depth=16" ! \
> filesink location="/home/myuser/fifo/pipe9.yuv"

If you want a graphic representation of your pipeline, check out:

 http://gstreamer.freedesktop.org/wiki/DumpingPipelineGraphs

(requires the graphviz package)

Cheers
 -Tim


_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Can someone run this pipe through gst-editor please

art vanderhoff
Hi Tim,

when I ran the gst-launch + debug level 3 it gave some really weird elements like udpsrc. I was hoping to use the debug to assemble the correct elements to run the pipeline as an app.

Basically this + the rawvideo thread are connected. I need to use ffmpeg to decode an incoming rtsp stream (doing several archive operations so seems like the best resource) and then pass one of the outputs to gsreamer from processing via videomixer.

The problem is I can not find a working combination of matching filters to get from ffmpeg to gst with the least overhead. What would you suggest as a good solution to get into the AYUV format from ffmpeg via a fifo.

I searched for the yuv4mpeg / y4menc solution but found no tips on how it works.

Please any advice would be be greatly appreciated.

thx
Art