CameraContext.stopRecord

2020-08-26 16:25 更新

解釋:結(jié)束錄像,成功則返回封面與視頻。

方法參數(shù)

Object object

object 參數(shù)說明

參數(shù)名類型必填默認值說明

success

Function

接口調(diào)用成功的回調(diào)函數(shù),res = { tempThumbPath, tempVideoPath }。

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行)

示例 

在開發(fā)者工具中打開


圖片示例

代碼示例

<view class="wrap">
    <camera
        flash="off" 
        binderror="error" 
        style="width: 100%; height: 500rpx;">
    </camera>
    <button type="primary" bind:tap="startRecord">開始錄像</button>
    <button type="primary" bind:tap="stopRecord">結(jié)束錄像</button>
    <video s-if="videoSrc" class="video" src="{{videoSrc}}"></video>
</view>
Page({
    data: {
        videoSrc: ''
    },
    startRecord() {
        this.cameraContext = swan.createCameraContext();
        this.cameraContext.startRecord({
            success: res => {
                swan.showToast({
                    title: 'startRecord',
                    icon: 'none'
                });
            }
        });
    },
    stopRecord() {
        this.cameraContext.stopRecord({
            success: res => {
                swan.showModal({
                    title: '提示',
                    content: res.tempVideoPath
                });
                this.setData({
                    videoSrc: res.tempVideoPath
                });
            }
        });
    }
});


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號