Hi im using libvlc_video_get_aspect_ratio to determine if user has selected a special aspect ratio on current video. These function returns a pointer to a char, and on documentation ive readed that pointer needs to be released using free() or libvlc_free(). But when i try to release these pointer wi...
Put all functions in minus "libvlc_add_intf". All libVLC functions come in minus, if you encounter more problems, maybe you have a path problem loading "libvlc.dll" with LoadLibrary... ensure LoadLibrary returns a valid handle. What problem have you with "lib" creation ...
Hi, in the second line of LibVLC_Visual_C wiki i see this line "***DEPRECATED API*** USE NEW libvlc_ prefixed functions". You need find the function "libvlc_AddIntf" not "VLC_AddIntf", but i dont remember if these function really exists :/ Anyway, i use visual studio wi...
If you have 2 screens on windows, you can use the video card software to show same video on both screens. For example on windows 7 in "screen resolution" you can set the option "duplicate screens". On early windows if you dont have these option you can try with you video card dri...
Ok, vlc creates two child windows into window you pass in the libvlc_media_player_set_hwnd function every time you play a video. One of these windows is maked to get mouse events, and the other window is used to output the video. Windows schema : 1 MyWindow 2 -VlcEnvetWindow 3 --VlcOutputWindow You ...
I use a trick in C under windows to get mouse and key events, this consists on disable Vlc Window using EnableWindow API and later get events from their parent window. Ofcourse this trick disables automatic fullscreen and you need to write code for it in doubleclick event resizing the parent and vlc...
Hi, im looking for paint some external controls (play, pause, stop, media list, etc...) directly to video output in windows xp/7. I have sent some ways reading this forum, but cant decide for the best way. In first instance i tryed libvlc_video_set_callbacks + libvlc_video_set_format to do this, but...