Search found 4 matches

Go to advanced search

by Pap
11 Apr 2014 00:45
Forum: Development around libVLC
Topic: Forcing libVLC to work in synchronous mode is a must.
Replies: 0
Views: 506

Forcing libVLC to work in synchronous mode is a must.

Hi there, After quite some experiments with libVLC, I realized that, although the library is neat in many ways and very easy to use, it works in "asynchronous mode", meaning whatever libVLC command you issue it is actually executed later, asynchronously. This leads to strange problems, and...
by Pap
06 Apr 2014 12:26
Forum: Development around libVLC
Topic: Can't control media after EndReached event
Replies: 2
Views: 1405

Re: Can't control media after EndReached event

I have the same problem and I posted about it some time ago (see this thread for details). I got no answer. Actually, the EndReached callback seems to be irrelevant. The only workaround I found is to implement my own "media_player_replay" function, which basically calls libvlc_media_player...
by Pap
12 Feb 2014 22:50
Forum: Development around libVLC
Topic: Replay sound after it is ended
Replies: 2
Views: 858

Re: Replay sound after it is ended

The following simple program demonstrates the problem: #include <iostream> #include <vlc/vlc.h> int main(void) { libvlc_instance_t *vlc_instance; libvlc_media_t *media; libvlc_media_player_t *player; char ch; vlc_instance = libvlc_new(0, NULL); media = libvlc_media_new_path(vlc_instance,"sample...
by Pap
23 Jan 2014 18:56
Forum: Development around libVLC
Topic: Replay sound after it is ended
Replies: 2
Views: 858

Replay sound after it is ended

Greetings VideoLAN community, being a fan of VLC player for years now, I decided to use libVLC for developing multimedia applications. Note that I am only interested on sound playback for now. Compared to other APIs, I found libVLC to be much easier to use. I am also developing Fortran 2003/2008 bin...

Go to advanced search