var mi = new MediaInfoLib.MediaInfo();
mi.Open(Server.MapPath(Model.TimeLineListArray[j].TimeLineMedia));
int width = int.Parse(mi.Get(MediaInfoLib.StreamKind.Video, 0, "Width"));
This code returns error in server, but in local system it is working.
'mi.open' function returns zero in server and in local system returns one.
'mi.Get' function returns "Unable to load MediaInfo library" in server and in local system returns width.
Please help. Thanks in Advance!!!