Hi , I'am C programmer and vlc beginner. My objetive is to create an application to play video. my application will be multiplataform. my application only plays video or playlist ( 5 or 6 videos maximum). What way to choose? to embeded vlc in my C++ code or to create vlc interface help me , please.
HELLO,excuse me gentlemen , the question is wrong. I want to link libvlc and libvlccore in execution time.... more or less my script code is: #!/bin/bash LD_RUN_PATH=./lib:$LD_RUN_PATH export LD_RUN_PATH gcc -o hola vlc_sdl.c -L/usr/lib -lvlc -L./lib -lSDL but I noticed with ldd that libvlc.so depen...
Hi, I have a problem with vlc,my vlc vlc version is 1.0.5 : sudo ./configure --enable-shared=no --enable-static && make && make install I compile sdl example: gcc -o test vlc_sdl.c -lvlc -lvlccore -L/lib -lhal -ldbus-1 -lrt -lpthread -ldl -lm -lSDL ldd hola | grep vlc ----> OK!!! doe...
hello, in this example: http://wiki.videolan.org/GenerateLibFromDll you can to generate a lib for to linker in any c/c++ project , it's wonderfull because you have (for example) vlc.h and vlc.lib and you can to link a your project in .Net,... etc and you don't compile and to install cywign because i...