Thank you for answering me!
I've already tried --plugin-path: the result is after compiling well, the .exe says:
main libvlc error: no memcpy module matched "any"
main access error: no access module matched "file"
main input error: open of 'file/xspf-open://C:\Documents and Settings\Baloo\Application Data\vlc\ml.xspf' failed: could not create access: no access module matched "file"
main interface error: no interface module matched "hotkeys,none"
main interface error: no suitable interface module
main libvlc error: interface hotkeys,none" initialization failed
main access error: no access module matched "any"
That is why I used to initialize the parameters of libvlc_new (vlc_args[]) :
Code: Select all
"--module-path=cygdrive/d/cygwinTestVLC/vlc/modules"};
And the error messages above are deleted but I have after compiling well:
vlc: unknown option or missing mandatory argument '--module-path=cygdrive/d/cygwinTestVLC/vlc/module'
Try 'vlc --help' for more information
The command line options couldn't be loaded, check that they are valid
My aim is to generate an .exe of the following source code: Tutorial for version 0.9.x, with cygwin
http://wiki.videolan.org/LibVLC_Tutorial
Does anyone succeed iin executing this Tutorial for version 0.9.x, with cygwin?
Thanks in advance.