> 微信小程序开发教程手册 > 微信小程序API 视频

wx.chooseVideo(OBJECT)


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

OBJECT参数说明:

参数 类型 必填 说明
sourceType StringArray "album"从相册选视频,"camera"使用相机拍摄,默认为:['album', 'camera']
maxDuration Number 拍摄视频最长拍摄时间,单位秒。最长支持60秒
camera StringArray 前置或者后置摄像头,默认为前后都有,即:['front', 'back']
success Function 接口调用成功,返回视频文件的临时文件路径,res={tempFilePath:"视频文件的临时路径"}
fail Function 接口调用失败的回调函数
complete Function 接口调用结束的回调函数(调用成功、失败都会执行)

返回参数说明:

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

示例代码:下载

<view class="container">
    <video src="{{src}}"></video>
    <button bindtap="bindButtonTap">获取视频</button>
</view>
Page({
    data:{
        src:""
    },
    bindButtonTap:function(){
        var that = this;
        wx.chooseVideo({
            sourceType:['album','camera'],
            maxDuration:60,
            camera:['front','back'],
            success:function(res){
                that.setData({
                    src:res.tempFilePath
                })
            }
        })
    }
})