What is the syntax for caps, specifying media capabilities, in gstreamer? Caps are strings that specify the type of media allowed and look like "audio/x-raw-int,..." but I haven't been able to find good documentation on exactly what is allowed in a caps string.
|
The syntax is:
Note that the type is not a MIME type, however much it may look like one. You can find out which caps properties elements support by using The GStreamer plugin writer's guide also contains a list of defined types which describes properties for common audio, video and image formats. |
|||
|
|
|
This is how i use it in python...HTH caps = gst.Caps("video/x-raw-yuv,format=(fourcc)AYUV,width=704,height=480") capsFilter = gst.element_factory_make("capsfilter") capsFilter.props.caps = caps |
|||
|
|
a partial answer, which i'm sure you've worked out already:
formally, caps are not represented by strings but by a GstCaps object containing an array of GstStructures. see the documentation here. perhaps if we work out a definitive answer here we could submit a documentation patch for the function |
||||
|
|
|
In Java, for gstreamer-java
In C, say you want videoscale caps filter
then set properties
then you could add these to bin and link them the way you have constructed media pipeline using gst-launch
|
||||
|
|
|
Here is the format as far as I understand it:
|
|||
|
|
|
I'm unsure due to your question is about syntax, but "list of defined types" may be helpful. |
|||
|
|