Hello,
I'm trying to use MediaInfo library in python via ctypes. I tried this code:
import ctypes
milib = ctypes.cdll.LoadLibrary("mediainfo.dll")
handle = milib.MediaInfo_New()
milib.MediaInfo_Open(handle, "D:\temp\video.avi")
Unfortunately the last line complaints that there are not enough parameters for that function. I based this on a sample Delphi code, which is shipped with the library. There are also samples in many other languages. Unfortunately I don't know anything else then Pascal and PHP. And now I'm trying to learn Python.
I would greatly appreciate if anyone could help me with this.