头条录屏相关功能

编程入门 行业动态 更新时间:2024-10-28 07:23:50

<a href=https://www.elefans.com/category/jswz/34/1765373.html style=头条录屏相关功能"/>

头条录屏相关功能

头条录屏相关功能

    //=============================================================================================//=============================================================================================//初始化录屏功能iniTape() {//录屏的保存路径this.tapePath = null;this.tapeStartTime = 0;this.tapeMaxTime = 90;this.recorder = tt.getGameRecorderManager();},//手动触发录屏onTapeButtonClick() {//开始后大于3秒才能关闭let nowTime = new Date().getTime();let tapeTime = nowTime - this.tapeStartTime;if (tapeTime < 3000) {cc.log("录屏时间小于3秒");} else {this.stopTape();};},//录屏时间控制tapeTimeControl() {let timeCount = 0;let callback = function () {timeCount++;//超过了最大时长或者录制状态为未开启if (timeCount >= this.tapeMaxTime) {this.unschedule(callback);timeCount = 0;this.stopTape();};};this.schedule(callback, 1);},//开始游戏录屏startTape() {//记录一个时间戳this.tapeStartTime = new Date().getTime();if (typeof (tt) != "undefined") {this.recorder.onStart(res => {console.log("录屏开始");this.tapeTimeControl();});this.recorder.start({duration: this.tapeMaxTime,});};},//结束游戏录屏stopTape() {if (typeof (tt) != "undefined") {this.recorder.onStop(res => {console.log(res.videoPath, "录屏结束");// do something;this.tapePath = res.videoPath;});this.recorder.stop();};},//录屏分享tapeShare() {if (typeof (tt) !== "undefined") {if (this.game_rules_js.tapePath == null) {return;};//获取分享导语tt.shareAppMessage({channel: 'video',  //指定为视频分享title: '标题',extra: {videoPath: this.game_rules_js.tapePath,// 设置视频路径videoTopics: ["话题1", "话题2"]},success: () => {//分享回调console.log('录屏分享成功');//分享奖励,仅一次this.tapeShareSucces();},fail: () => {console.log('录屏分享失败', this.tapePath);this.tapeShareFail();}});};},//录屏分享成功tapeShareSucces: function () {//do something},//录屏分享失败tapeShareFail: function () {//do something;},//=============================================================================================//=============================================================================================

更多推荐

头条录屏相关功能

本文发布于:2024-03-08 20:46:24,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1722280.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:头条   功能

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!