chris319 wrote:Sorry, it fails at this line:
Code: Select all
Define Inst = libvlc_new(0, 0)
You need to download binaries (libvlccore.dll + libvlc.dll) and place them to a path which is set in the code here:
Code: Select all
CompilerIf #PB_Compiler_Processor = #PB_Processor_x86
hLibVLCcore = OpenLibrary(#PB_Any, GetPathPart(ProgramFilename()) + "libvlc\x86\libvlccore.dll")
hLibVLC = OpenLibrary(#PB_Any, GetPathPart(ProgramFilename()) + "libvlc\x86\libvlc.dll")
CompilerElse
hLibVLCcore = OpenLibrary(#PB_Any, GetPathPart(ProgramFilename()) + "libvlc\x64\libvlccore.dll")
hLibVLC = OpenLibrary(#PB_Any, GetPathPart(ProgramFilename()) + "libvlc\x64\libvlc.dll")
CompilerEndIf