Man pages for libvlc
- by mawia
Hi! all.
Though I am not sure wether this question belongs to here but pardon me if not so.
Can you people guide me to the manual page of libvlc functions like(just give a kind of pointer where these functions are described in detail)
void libvlc_playlist_pause( libvlc_instance *, libvlc_exception )
mtime_t libvlc_input_get_length( libvlc_input_t *, libvlc_exception )
mtime_t libvlc_input_get_time( libvlc_input_t *, libvlc_exception )
void libvlc_input_set_time( libvlc_input_t *, mtime_t , libvlc_exception )
float libvlc_input_get_position( libvlc_input_t *, libvlc_exception )
void libvlc_input_set_position( libvlc_input_t *, float , libvlc_exception )
void libvlc_set_rate( libvlc_input_t *, float rate, libvlc_exception )
float libvlc_get_rate( libvlc_input_t *, libvlc_exception )
libvlc_input_get_information( libvlc_input_t *, libvlc_exception )
In particular can you please describe the functioning of libvlc_playlist_pause.I am using this in my aplication to run a video stream.My video is running but since video file is coming over a network I need to pause the player for a particular amount till enough data is buffered.
With regards
Mawia