|
发表于 2003-2-11 09:31:35
|
显示全部楼层
about:plugins
mplayerplug-in v0.40 handles QuickTime Windows Media Player Plugin
File name: mplayerplug-in.so
Video Player Plug-in for QuickTime and Windows Media Player streams using mplayer
MIME Type Description Suffixes Enabled
video/quicktime Quicktime mov Yes
video/x-quicktime Quicktime mov Yes
video/x-msvideo AVI avi Yes
video/msvideo AVI avi Yes
video/mpeg MPEG mpg,mpeg Yes
video/x-mpeg MPEG mpg,mpeg Yes
video/x-ms-asf-plugin Windows Media asf,asx Yes
application/x-mplayer2 WMV wmv Yes
video/x-ms-wm MSNBCPlayer asf Yes
video/x-ms-asf Windows Media asf,asx Yes
application/x-drm-v2 Windows Media asx Yes
Source/mplayerplug-in.c:
NPP_GetMIMEDescription(void)
{
/* type of files we handle */
return("video/quicktime:mov:Quicktime;"
"video/x-quicktime:mov:Quicktime;"
"video/x-msvideo:avi:AVI;"
"video/msvideo:avi:AVI;"
"video/mpeg:mpg,mpeg:MPEG;"
"video/x-mpeg:mpg,mpeg:MPEG;"
"video/x-ms-asf-plugin:asf,asx:Windows Media;"
"application/x-mplayer2:wmv:WMV;"
"video/x-ms-wm:asf:MSNBCPlayer;"
"video/x-ms-asf:asf,asx:Windows Media;"
"application/x-drm-v2:asx:Windows Media"
);
}
|
|