使用的是cocos creator 1.82稳定版。代码如下,很简单的一个demo. 以web-mobile形式打包后,打包在移动应用端,在android上使用没问题,声音和视频都清晰。在iphone上也没问题,但是在ipad上有明显杂音,在几台不同型号ipad上都这样100%重现。项目即将上线,请解决!!!!
`cc.Class({
extends: cc.Component,
properties: {
videoPlayer: {
default: null,
type: cc.VideoPlayer
},
audio: {
url: cc.AudioClip,
default: null
},
},
play: function() {
this.videoPlayer.play();
if (!this.audio) return;
var id = cc.audioEngine.play(this.audio, false, 1);
this.audioPool.push(id);
},
pause: function() {
this.videoPlayer.pause();
},
stop: function() {
this.videoPlayer.stop();
if (!this.audio) return;
cc.audioEngine.stopAll();
},
});
`
-
Creator 版本:
-
目标平台: iOS
-
详细报错信息,包含调用堆栈:
-
重现方式:
-
之前哪个版本是正常的 :iphone手机和android系统上是正常的
*, 手机型号 :iPAD min ,iPad air,ipad air 2,ipad 2等。
-
手机浏览器 :
-
编辑器操作系统 :windows 7/10
-
编辑器之前是否有其它报错 :
-
出现概率:100%
-
额外线索: