修复了重新录音出错的问题

master
limenglian 5 years ago
parent 951b2499d1
commit 7d38838bec

@ -8,23 +8,21 @@ Page({
data: { data: {
isSpeaking: false,//是否正在说话 isSpeaking: false,//是否正在说话
voices: [],//音频数组: voices: [],//音频数组:
muted:false muted: false
}, },
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function (options) { onLoad: function (options) {
this.videoContext = wx.createVideoContext('myVideo');
// var time = this.videoContext.duration;
}, },
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */
onReady: function () { onReady: function () {
// this.videoContext = wx.createVideoContext('myVideo'); this.videoContext = wx.createVideoContext('myVideo');
}, },
/** /**
@ -68,18 +66,11 @@ Page({
onShareAppMessage: function () { onShareAppMessage: function () {
}, },
endDub() {
this.videoContext.stop();
wx.stopRecord();
wx.navigateTo({
url: '../previewWork/previewWork',
})
},
//预览素材 //预览素材
playingFodder:function(){ playingFodder: function () {
this.setData({ this.setData({
muted:false muted: false
}) })
this.videoContext.play(); this.videoContext.play();
@ -87,26 +78,20 @@ Page({
// 开始录音, // 开始录音,
startDub: function () { startDub: function () {
/*
this.videoContext.src = 'cloud://dunning-bar-enr-3e46z.6475-dunning-bar-enr-3e46z-1300499016/huaizhugege-erkang.mp4' ;
var time = this.videoContext.duration;
console.log(time);
*/
this.videoContext.seek(0); this.videoContext.seek(0);
this.videoContext.play(); this.videoContext.play();
//speaking.call(this); //speaking.call(this);
this.setData({ this.setData({
isSpeaking:true, isSpeaking: true,
muted: true, muted: true,
}) })
wx.startRecord({ wx.startRecord({
success:function(res){ success: function (res) {
var tempFilepath=res.tempFilePath; var tempFilepath = res.tempFilePath;
wx.saveFile({ wx.saveFile({
tempFilePath: tempFilepath, tempFilePath: tempFilepath,
success:function(res){ success: function (res) {
var savedFilepath=res.savedFilePath; var savedFilepath = res.savedFilePath;
getApp().globalData.workPath = savedFilepath; getApp().globalData.workPath = savedFilepath;
// this.setData({ // this.setData({
// wfilePath: savedFilePath // wfilePath: savedFilePath
@ -116,31 +101,47 @@ Page({
}), }),
wx.showToast({ wx.showToast({
title: '录音成功', title: '录音成功',
icon:'success', icon: 'success',
duration:200 duration: 200
}) })
}, },
fail:function(res){ fail: function (res) {
wx.showModal({ wx.showModal({
title: '提示', title: '提示',
content: '录音出错' content: '录音出错'
}) })
}, },
});
},
funended: function () { funended: function () {
console.log('eeee'); console.log('录音结束');
wx.stopRecord();// 结束录音 wx.stopRecord();// 结束录音
wx.navigateTo({//视频播放完成自动跳转到预览页面 wx.navigateTo({//视频播放完成自动跳转到预览页面
url: '../previewWork/previewWork', url: '../previewWork/previewWork',
}) })
} },
//重新录音
reDub: function () {
wx.stopRecord();
this.setData({
isSpeaking: false
}); });
/* wx.showModal({
setTimeout(function () { title: '提示',
wx.stopRecord();// 结束录音 content: '重新录音'
wx.navigateTo({//视频播放完成自动跳转到预览页面 });
this.startDub();
},
//结束录音
endDub: function () {
console.log('录音结束');
this.videoContext.stop();
wx.stopRecord();
wx.navigateTo({
url: '../previewWork/previewWork', url: '../previewWork/previewWork',
}) })
},time);
*/
}, },
}) })

@ -1,10 +1,12 @@
<!--miniprogram/pages/Dubbing/Dubbing.wxml--> <!--miniprogram/pages/Dubbing/Dubbing.wxml-->
<view> <view>
<video id="myVideo" src="cloud://dunning-bar-enr-3e46z.6475-dunning-bar-enr-3e46z-1300499016/huaizhugege-erkang.mp4"muted ="{{muted}}" binended = "funended" controls ="{{false}}" show-play-btn ="{{false}}"show-fullscreen-btn = "{{false}}" show-center-play-btn="{{false}}" style="width: 400px; height: 200px;"></video> <video id="myVideo" src="cloud://dunning-bar-enr-3e46z.6475-dunning-bar-enr-3e46z-1300499016/video/video_1.mp4"
muted ="{{muted}}" bindended="funended" custom-cache="{{false}}" controls ="{{false}}" show-play-btn ="{{false}}"show-fullscreen-btn = "{{false}}" show-center-play-btn="{{false}}" style="width: 300px; height: 200px;"></video>
</view> </view>
<view> <view>
<button bindtap="playingFodder">预览素材</button> <button bindtap="playingFodder">预览素材</button>
<button bindtap="startDub">开始录音</button> <button bindtap="startDub">开始录音</button>
<button bindtap="reDub">重新录制</button>
<button bindtap="endDub">完成录音</button> <button bindtap="endDub">完成录音</button>
</view> </view>

Loading…
Cancel
Save