| GStreamer RTSP Server Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | ||||
struct GstRTSPMediaFactoryURI; struct GstRTSPMediaFactoryURIClass; GstRTSPMediaFactoryURI * gst_rtsp_media_factory_uri_new (void); void gst_rtsp_media_factory_uri_set_uri (GstRTSPMediaFactoryURI *factory,const gchar *uri); gchar * gst_rtsp_media_factory_uri_get_uri (GstRTSPMediaFactoryURI *factory);
This specialized GstRTSPMediaFactory constructs media pipelines from a URI,
given with gst_rtsp_media_factory_uri_set_uri().
It will automatically demux and payload the different streams found in the media at URL.
Last reviewed on 2013-07-11 (1.0.0)
struct GstRTSPMediaFactoryURI {
GstRTSPMediaFactory parent;
};
A media factory that creates a pipeline to play and uri.
struct GstRTSPMediaFactoryURIClass {
GstRTSPMediaFactoryClass parent_class;
};
The GstRTSPMediaFactoryURI class structure.
GstRTSPMediaFactoryURI * gst_rtsp_media_factory_uri_new (void);
Create a new GstRTSPMediaFactoryURI instance.
Returns : |
a new GstRTSPMediaFactoryURI object. [transfer full] |
void gst_rtsp_media_factory_uri_set_uri (GstRTSPMediaFactoryURI *factory,const gchar *uri);
Set the URI of the resource that will be streamed by this factory.
|
a GstRTSPMediaFactory |
|
the uri the stream |
gchar * gst_rtsp_media_factory_uri_get_uri (GstRTSPMediaFactoryURI *factory);
Get the URI that will provide media for this factory.
|
a GstRTSPMediaFactory |
Returns : |
the configured URI. g_free() after usage. [transfer full]
|