![]() |
![]() |
![]() |
Grilo Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy |
#include <grilo.h> struct GrlMediaVideo; struct GrlMediaVideoClass; void grl_media_video_set_width (GrlMediaVideo *video
,gint width
); void grl_media_video_set_height (GrlMediaVideo *video
,gint height
); void grl_media_video_set_framerate (GrlMediaVideo *video
,gfloat framerate
); void grl_media_video_set_season (GrlMediaVideo *video
,gint season
); void grl_media_video_set_episode (GrlMediaVideo *video
,gint episode
); void grl_media_video_set_show (GrlMediaVideo *video
,const gchar *show
); gint grl_media_video_get_width (GrlMediaVideo *video
); gint grl_media_video_get_height (GrlMediaVideo *video
); gfloat grl_media_video_get_framerate (GrlMediaVideo *video
); gint grl_media_video_get_season (GrlMediaVideo *video
); gint grl_media_video_get_episode (GrlMediaVideo *video
); const gchar * grl_media_video_get_show (GrlMediaVideo *video
); GrlMedia * grl_media_video_new (void
); void grl_media_video_set_size (GrlMediaVideo *video
,gint width
,gint height
); void grl_media_video_set_url_data (GrlMediaVideo *video
,const gchar *url
,const gchar *mime
,gfloat framerate
,gint width
,gint height
); void grl_media_video_add_url_data (GrlMediaVideo *video
,const gchar *url
,const gchar *mime
,gfloat framerate
,gint width
,gint height
); const gchar * grl_media_video_get_url_data (GrlMediaVideo *video
,gchar **mime
,gfloat *framerate
,gint *width
,gint *height
); const gchar * grl_media_video_get_url_data_nth (GrlMediaVideo *video
,guint index
,gchar **mime
,gfloat *framerate
,gint *width
,gint *height
);
This high level class represents an video multimedia item. It has methods to set and get properties like framerate, width, height, and so on.
struct GrlMediaVideoClass { GrlMediaClass parent_class; };
Grilo Media video Class
GrlMediaClass |
the parent class structure |
void grl_media_video_set_width (GrlMediaVideo *video
,gint width
);
Set the width of the video
|
the media instance |
|
the video's width |
Since 0.1.4
void grl_media_video_set_height (GrlMediaVideo *video
,gint height
);
Set the height of the video
|
the media instance |
|
the video's height |
Since 0.1.4
void grl_media_video_set_framerate (GrlMediaVideo *video
,gfloat framerate
);
Set the framerate of the video
|
the media instance |
|
the video's framerate |
Since 0.1.4
void grl_media_video_set_season (GrlMediaVideo *video
,gint season
);
Sets the season number of the video
|
the media instance |
|
the video's season |
Since 0.1.11
void grl_media_video_set_episode (GrlMediaVideo *video
,gint episode
);
Sets the episode number of the video
|
the media instance |
|
the video's episode |
Since 0.1.11
void grl_media_video_set_show (GrlMediaVideo *video
,const gchar *show
);
Sets the show title of the video
|
the media instance |
|
the video's show name |
Since 0.1.11
gint grl_media_video_get_width (GrlMediaVideo *video
);
|
the media instance |
Returns : |
the width of the video |
Since 0.1.4
gint grl_media_video_get_height (GrlMediaVideo *video
);
|
the media instance |
Returns : |
the height of the video |
Since 0.1.4
gfloat grl_media_video_get_framerate (GrlMediaVideo *video
);
|
the media instance |
Returns : |
the framerate of the video |
Since 0.1.4
gint grl_media_video_get_season (GrlMediaVideo *video
);
|
the media instance |
Returns : |
the season number of the video |
Since 0.1.11
gint grl_media_video_get_episode (GrlMediaVideo *video
);
|
the media instance |
Returns : |
the episode number of the video |
Since 0.1.11
const gchar * grl_media_video_get_show (GrlMediaVideo *video
);
|
the media instance |
Returns : |
the show title of the video |
Since 0.1.11
GrlMedia * grl_media_video_new (void
);
Creates a new data video object.
Returns : |
a newly-allocated data video. |
Since 0.1.4
void grl_media_video_set_size (GrlMediaVideo *video
,gint width
,gint height
);
Set the width and the height of the video
|
the media instance |
|
the video's width |
|
the video's height |
Since 0.1.4
void grl_media_video_set_url_data (GrlMediaVideo *video
,const gchar *url
,const gchar *mime
,gfloat framerate
,gint width
,gint height
);
Sets all the keys related with the URL of a video resource in one go.
|
the media instance |
|
the video's url |
|
video mime-type |
|
video framerate, or -1 to ignore |
|
video width, or -1 to ignore |
|
video height, or -1 to ignore |
Since 0.1.10
void grl_media_video_add_url_data (GrlMediaVideo *video
,const gchar *url
,const gchar *mime
,gfloat framerate
,gint width
,gint height
);
Sets all the keys related with the URL of a media resource and adds it to
video
(useful for resources with more than one URL).
|
the media instance |
|
a video's url |
|
video mime-type |
|
video framerate, or -1 to ignore |
|
video width, or -1 to ignore |
|
video height, or -1 to ignore |
Since 0.1.10
const gchar * grl_media_video_get_url_data (GrlMediaVideo *video
,gchar **mime
,gfloat *framerate
,gint *width
,gint *height
);
|
the media instance |
|
the url mime-type, or NULL to ignore. [out][transfer none]
|
|
the url framerate, or NULL to ignore |
|
the url width, or NULL to ignore |
|
the url height, or NULL to ignore |
Returns : |
all the keys related with the URL of a video resource in one go. |
Since 0.1.10
const gchar * grl_media_video_get_url_data_nth (GrlMediaVideo *video
,guint index
,gchar **mime
,gfloat *framerate
,gint *width
,gint *height
);
|
the media instance |
|
element to retrieve |
|
the url mime-type, or NULL to ignore. [out][transfer none]
|
|
the url framerate, or NULL to ignore |
|
the url width, or NULL to ignore |
|
the url height, or NULL to ignore |
Returns : |
all the keys related with the URL number index of a video resource
in one go. |
Since 0.1.10