模 块 |
功 能 |
AVICAP.DLL |
包含执行视频捕获的函数,它给AVI文件的I/O处理和视频、音频设备驱动程序提供一个高级接口 |
MSVIDEO.DLL |
包含一套特殊的DrawDib函数,用来处理屏幕上的视频操作 |
MCIAVI.DRV |
包括对VFW的MCI命令解释器的驱动程序 |
AVIFILE.DLL |
包含由标准多媒体I/O(mmio)函数提供的更高的命令,用来访问.AVI文件 |
ICM |
压缩管理器,用于管理的视频压缩/解压缩的编译码器(Codec) |
ACM |
音频压缩管理器,提供与ICM相似的服务,适用于波形音频 |
private MediaLocator autoDetect(){//自动识别功能函数
MediaLocator ml = null; //视频采集设备对应的MediaLocator
VideoFormat currentFormat = null;//用户定制获得视频采集设备支持的格式
Format setFormat = null;//用户定制视频采集设备输出的格式
Format[] videoFormats = null;//视频采集设备支持的所有格式
System.out.println(" AutoDetect for VFW");
//获得当前所有设备列表
Vector deviceList = CaptureDeviceManager.getDeviceList( null );
if( deviceList != null ){
//根据设备列表,找出可用设备名称
for( int i=0; i<deviceList.size(); i++ ){
try{
CaptureDeviceInfo di=( CaptureDeviceInfo )deviceList.elementAt(i);
//如果设备名称以vfw开头
if( di.getName().startsWith("vfw:") ){
//获得所有支持RGB格式
videoFormats = di.getFormats();
for( int j=0; j<videoFormats.length; j++ ){
//我们只需要第一种RGB格式
if( videoFormats[j] instanceof RGBFormat ){
currentFormat = ( RGBFormat )videoFormats[i];
break;
}
}
if( currentFormat == null ) {
System.err.println("Search For RGBFormat Failed");
System.exit( -1 );
}
//通过设备,获得MediaLocator,这个很重要
ml = di.getLocator();
}
}
catch ( Exception npe ) {
System.err.println( "Unable to get Processor for device");
System.exit(-1);
}
}
}
else {
System.err.println( "No Capture Device OK");
System.exit(-1);
}
return ml;//返回可用的设备medialocator
} |