| GUPnP DLNA Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | Object Hierarchy | Properties | Signals | ||||
GUPnPDLNADiscovererGUPnPDLNADiscoverer — Utility API for discovering DLNA profile/mime type and other metadata for given media. |
Synopsis
GUPnPDLNADiscoverer; GUPnPDLNADiscoverer * gupnp_dlna_discoverer_new (GstClockTime timeout,gboolean relaxed_mode,gboolean extended_mode); #define gupnp_dlna_discoverer_start (discoverer) #define gupnp_dlna_discoverer_stop (discoverer) gboolean gupnp_dlna_discoverer_discover_uri (GUPnPDLNADiscoverer *discoverer,const gchar *uri); GUPnPDLNAInformation * gupnp_dlna_discoverer_discover_uri_sync (GUPnPDLNADiscoverer *discoverer,const gchar *uri,GError **err);
Properties
"extended-mode" gboolean : Read / Write / Construct Only "relaxed-mode" gboolean : Read / Write / Construct Only
Description
The GUPnPDLNADiscoverer object provides a light-weight wrapper over the GstDiscoverer API. The latter provides a simple interface to discover media metadata given a URI. GUPnPDLNADiscoverer extends this API to also provide a DLNA profile name and mime type for the media.
The API provided corresponds very closely to the API provided by GstDiscoverer - both synchronous and asynchronous discovery of metadata are possible.
The asynchronous mode requires a running GMainLoop in the default GMainContext, where one connects to the various signals, appends the URIs to be processed and then asks for the discovery to begin.
Details
GUPnPDLNADiscoverer
typedef struct _GUPnPDLNADiscoverer GUPnPDLNADiscoverer;
The top-level object used to for metadata extraction.
gupnp_dlna_discoverer_new ()
GUPnPDLNADiscoverer * gupnp_dlna_discoverer_new (GstClockTime timeout,gboolean relaxed_mode,gboolean extended_mode);
Creates a new GUPnPDLNADiscoverer object with the given default timeout value.
|
default discovery timeout, in nanoseconds |
|
set to TRUE, to enable relaxed mode support. FALSE otherwise |
|
set to TRUE, to enable extended mode support. FALSE otherwise |
Returns : |
A new GUPnPDLNADiscoverer object. |
gupnp_dlna_discoverer_start()
#define gupnp_dlna_discoverer_start(discoverer)
Allows asynchronous discovery of URIs to begin.
|
GUPnPDLNADiscoverer object to start discovery on |
gupnp_dlna_discoverer_stop()
#define gupnp_dlna_discoverer_stop(discoverer)
Stops asynchronous discovery of URIs.
|
GUPnPDLNADiscoverer object to stop discovery on |
gupnp_dlna_discoverer_discover_uri ()
gboolean gupnp_dlna_discoverer_discover_uri (GUPnPDLNADiscoverer *discoverer,const gchar *uri);
Queues uri for metadata discovery. When discovery is completed, the
"discovered" signal is emitted on discoverer.
|
GUPnPDLNADiscoverer object to use for discovery |
|
URI to gather metadata for |
Returns : |
TRUE if uri was successfully queued, FALSE otherwise. |
gupnp_dlna_discoverer_discover_uri_sync ()
GUPnPDLNAInformation * gupnp_dlna_discoverer_discover_uri_sync (GUPnPDLNADiscoverer *discoverer,const gchar *uri,GError **err);
Synchronously gathers metadata for uri.
|
GUPnPDLNADiscoverer object to use for discovery |
|
URI to gather metadata for |
|
contains details of the error if discovery fails, else is NULL |
Returns : |
a GUPnPDLNAInformation with the metadata for uri
on success, NULL otherwise. [transfer full]
|
Property Details
The "extended-mode" property
"extended-mode" gboolean : Read / Write / Construct Only
Indicates support for profiles that are not part of the DLNA specification.
Default value: FALSE
The "relaxed-mode" property
"relaxed-mode" gboolean : Read / Write / Construct Only
Indicates that profile matching shouldbe strictly compliant with the DLNA specification.
Default value: FALSE
Signal Details
The "done" signal
void user_function (GUPnPDLNADiscoverer *discoverer,
GUPnPDLNAInformation *dlna,
GError *err,
gpointer user_data) : Run Last
Will be emitted when all information on a URI could be discovered.
The reciever must unref dlna with when done using it.
|
the GUPnPDLNADiscoverer |
|
the results as GUPnPDLNAInformation |
|
contains details of the error if discovery fails, else is NULL |
|
user data set when the signal handler was connected. |
