if (_capture == null)
{
try
{
_capture = new Capture("video1.mpg");
}
catch (NullReferenceException ex)
{ //show errors if there is any
MessageBox.Show(ex.Message);
}
}
video1.mpg 文件位于 bin 文件夹中。我已经使用任何视频转换器将 avi 文件转换为 MPEG-1 格式。 但是这种格式仍然不起作用。我也尝试过mencoder。但仍然是同样的错误。
Unable to create capture from video1.mpg
如何使其与 emgu 兼容Capture
?