chooseVideo

解释: 拍摄视频或从手机相册中选视频,返回视频的临时文件路径。

参数: Object

Object参数说明:

参数类型必填说明
sourceTypeArray.album 从相册选择视频,camera 使用相机,默认二者都有。
compressedBoolean是否压缩所选的视频源文件,默认值为true,需要压缩。
maxDurationNumber拍摄视频最长拍摄时间,(单位:s)。最长支持 60 秒。
successFunction接口调用成功,返回视频文件的临时文件路径,详见返回参数说明。
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数说明
tempFilePath选定视频的临时文件路径
duration选定视频的时间长度 (单位:s)
size选定视频的数据量大小(单位:B)
height返回选定视频的长
width返回选定视频的宽

说明:文件的临时路径,在智能小程序本次启动期间可以正常使用,如需持久保存,需在主动调用 swan.saveFile,在智能小程序下次启动时才能访问得到。

示例:在开发者工具中预览效果

  1. <button bind:tap="chooseVideo" type="primary">点击选择视频</button>
    <video src="{{src}}" controls></video>

  1. Page({
    data: {
    sourceType: ['album', 'camera'],
    compressed: false,
    maxDuration: 60,
    src: ''
    },

    chooseVideo() {
    let self = this;
    swan.chooseVideo({
    sourceType: this.getData('sourceType'),
    compressed: this.getData('compressed'),
    maxDuration: this.getData('maxDuration'),
    success: function (res) {
    // 成功返回选定视频的临时文件路径
    self.setData('src', res.tempFilePath);
    },
    fail: function (err) {
    console.log('错误码:' + err.errCode);
    console.log('错误信息:' + err.errMsg);
    }
    });
    }
    });