need quick gstreamer application to test if qtdemux is working

Can someone give me a quick gstreamer application to test if qtdemux is working. It needs to output to a filesink not imagesink as this is on a server with no gui. I seem to have it working via gst-launch, but when compiling an application it does not seem to work.

I have tried the following,

caps = gst_caps_new_simple("video/x-raw-yuv",
                      "format", GST_TYPE_FOURCC, GST_MAKE_FOURCC ('I', '4', '2', '0'),
                      "width", G_TYPE_INT, 384,
                      "height", G_TYPE_INT, 216,
                      "framerate", GST_TYPE_FRACTION, 25, 1,
                      NULL);

Thx Art


You can test everything from gst-launch like so:

gst-launch filesrc location=test.mov ! qtdemux name=demux demux.audio_00 ! decodebin ! audioconvert ! audioresample ! autoaudiosink demux.video_00 ! queue ! decodebin ! ffmpegcolorspace ! videoscale ! autovideosink

More info on qtdemux

链接地址: http://www.djcxy.com/p/43978.html

上一篇: 如何检查与gstreamer坏时间戳

下一篇: 需要快速的gstreamer应用程序来测试qtdemux是否正在工作