Postby chris_g » 23 Nov 2009 09:12
My workaround is to have a timer wich checks the current time like this:
if( libvlc_media_player_get_time(_mp, &_vlcexcep) >= libvlc_media_player_get_length(_mp, &_vlcexcep)-someMilliseconds ){
//set video back to 0;
// pause it;
}
But if there is a better way I would appreciate that. I´d like to use the end reached event.
cg