使用Phonegap的Android设备视频

时间:2012-12-03 13:14:44

标签: javascript android cordova phonegap-plugins

我正在使用带有Android设备的Phonegap,我需要显示设备的视频。

有谁知道我应该怎么做?

这是我的代码:

function getPhoto(source) { 
// Retrieve image file location from specified source 
   navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50, 
   destinationType: destinationType.FILE_URI, sourceType: source });
} 

但它只适用于图片。

1 个答案:

答案 0 :(得分:2)

PhoneGap在Camera.options中提供MediaType

Camera.MediaType = { 
  PICTURE: 0,             // allow selection of still pictures only. DEFAULT. Will return format specified via DestinationType
  VIDEO: 1,               // allow selection of video only, WILL ALWAYS RETURN FILE_URI
  ALLMEDIA : 2            // allow selection from all media types
}

“MediaType:设置要选择的媒体类型。仅在PictureSourceType为PHOTOLIBRARY或SAVEDPHOTOALBUM时有效。在nagivator.camera.MediaType(Number)中定义”