I'm using libvlc to read multiple videos, but I need them to be synchronized, either with each other or both with an external clock. Is it possible to do so with libVLC?
I'm not sure if this is the right place to suggest this feature, since it's about libvlc and not directly VLC. The function libvlc_media_get_tracks_info allocates memory for the returned tracks info that must be freed by the caller. I suggest/request the addition of a function such as: VLC_PUBLIC_AP...
I found the problem. It was not caused by VLC. Just for the interested, I recompiled VLC and debugged it. The problem was that _beginthreadex called in vlc_clone() was failing because of ENOMEM, i.e. I ran out of memory. That was because the stack size was set to 64 Mb in the Debug configuration, wh...
Hi, I'm using the libvlc.dll coming with VLC 1.1.4 (i.e. I didn't build it myself) and am trying to use it in a custom application (code very close to http://wiki.videolan.org/LibVLC_SampleCode_SDL) . In order to get feedback, I initialize libvlc with the "-vvvv" flag. When I run my applic...