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

link|improve this question

67% accept rate
feedback

1 Answer

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.