我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Babylon.js中AudioContext was not allowed to start异常问题怎么解决

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Babylon.js中AudioContext was not allowed to start异常问题怎么解决

本篇内容主要讲解“Babylon.js中AudioContext was not allowed to start异常问题怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Babylon.js中AudioContext was not allowed to start异常问题怎么解决”吧!

BabylonJS中使用音频引擎时遇到错误

当在BabylonJS中使用音频引擎时,可能会遇到以下错误:

audioEngine.ts:172 The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu

这个错误是因为浏览器的安全策略要求音频上下文必须在用户事件(例如单击、键盘按键等)中启用。这意味着,如果您尝试在没有用户事件的情况下自动播放音乐,则会抛出此错误。

为了解决这个问题,我们需要启用音频上下文。在BabylonJS中,可以通过AudioEngine()类来创建音频上下文。

您可以使用以下代码在用户事件触发后启用音频上下文:

let audioContext = new AudioEngine().audioContext;audioContext.resume();

在以上示例中,我们创建了一个AudioEngine实例,并从中获取了音频上下文。接下来,我们调用resume()方法启用音频上下文。请注意,在启用之前,必须先检查音频上下文是否存在。如果不存在,则需要将其创建。

这样就可以成功地启用音频上下文,然后您可以在BabylonJS中播放音频文件而不会遇到错误。

示例源码(修改前):

playingSoundSprites = (scene: Scene, canvas: HTMLCanvasElement) => {        var freeCamera = new FreeCamera("freeCamera", new Vector3(0, 0, 0), scene);        var theSound = new Sound("allSounds", "https://playground.babylonjs.com/sounds/6sounds.mp3", scene, null, {autoplay: false});        var isPlaying = 0;        let audioContext = new AudioEngine().audioContext;        var soundArray = [            [0.0, 5.000],            [5.100, 6.600],            [12.000, 1.600],        [14.000, 9.200],        [23.000, 7.900],        [31.000, 2.800],        ];        theSound.onended = function() {            isPlaying = 0;            console.log("not playing");        };        var advanceTexture = AdvancedDynamicTexture.CreateFullscreenUI("UI");        var uiPanel = new StackPanel();        uiPanel.width = "220px";        uiPanel.fontSize = "14px";        uiPanel.horizontalAlignment = Control.HORIZONTAL_ALIGNMENT_CENTER;        uiPanel.verticalAlignment = Control.VERTICAL_ALIGNMENT_CENTER;        advanceTexture.addControl(uiPanel);        var button = Button.CreateSimpleButton("but", "Play All Sounds");        button.paddingTop = "10px";        button.width = "150px";        button.height = "50px";        button.color = "white";        button.background = "green";        button.onPointerDownObservable.add(function() {            if (isPlaying === 0) {                isPlaying = 1;                theSound.play();                console.log("playing");            }        });        uiPanel.addControl(button);        var button1 = Button.CreateSimpleButton("but1", "Play Random Sound");        button1.paddingTop = "10px";        button1.width = "150px";        button1.height = "50px";        button1.color = "white";        button1.background = "green";        button1.onPointerDownObservable.add(function() {            if (isPlaying === 0) {                isPlaying = 1;                var randomSound = Math.floor(Math.random() * 6);                theSound.play(0, soundArray[randomSound][0], soundArray[randomSound][1]);                console.log("playing");            }        });        uiPanel.addControl(button1);        return scene;    }

运行结果如下:

Babylon.js中AudioContext was not allowed to start异常问题怎么解决

不能播放声音,在浏览器控制台

查看日志如下:

The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu

Babylon.js中AudioContext was not allowed to start异常问题怎么解决

示例源码(修改后):

playingSoundSprites = (scene: Scene, canvas: HTMLCanvasElement) => {        var freeCamera = new FreeCamera("freeCamera", new Vector3(0, 0, 0), scene);        var theSound = new Sound("allSounds", "https://playground.babylonjs.com/sounds/6sounds.mp3", scene, null, {autoplay: false});        var isPlaying = 0;        var soundArray = [            [0.0, 5.000],            [5.100, 6.600],            [12.000, 1.600],        [14.000, 9.200],        [23.000, 7.900],        [31.000, 2.800],        ];        theSound.onended = function() {            isPlaying = 0;            console.log("not playing");        };        var advanceTexture = AdvancedDynamicTexture.CreateFullscreenUI("UI");        var uiPanel = new StackPanel();        uiPanel.width = "220px";        uiPanel.fontSize = "14px";        uiPanel.horizontalAlignment = Control.HORIZONTAL_ALIGNMENT_CENTER;        uiPanel.verticalAlignment = Control.VERTICAL_ALIGNMENT_CENTER;        advanceTexture.addControl(uiPanel);        var button = Button.CreateSimpleButton("but", "Play All Sounds");        button.paddingTop = "10px";        button.width = "150px";        button.height = "50px";        button.color = "white";        button.background = "green";        button.onPointerDownObservable.add(function() {            let audioContext = new AudioEngine().audioContext;            audioContext!.resume().then(() => {                if (isPlaying === 0) {                    isPlaying = 1;                    theSound.play();                    console.log("playing");                }            });        });        uiPanel.addControl(button);        var button1 = Button.CreateSimpleButton("but1", "Play Random Sound");        button1.paddingTop = "10px";        button1.width = "150px";        button1.height = "50px";        button1.color = "white";        button1.background = "green";        button1.onPointerDownObservable.add(function() {            let audioContext = new AudioEngine().audioContext;            audioContext!.resume().then(() => {                if (isPlaying === 0) {                    isPlaying = 1;                    var randomSound = Math.floor(Math.random() * 6);                    theSound.play(0, soundArray[randomSound][0], soundArray[randomSound][1]);                    console.log("playing");                }            });        });        uiPanel.addControl(button1);        return scene;    }

到此,相信大家对“Babylon.js中AudioContext was not allowed to start异常问题怎么解决”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Babylon.js中AudioContext was not allowed to start异常问题怎么解决

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Babylon.js中AudioContext was not allowed to start异常问题怎么解决

本篇内容主要讲解“Babylon.js中AudioContext was not allowed to start异常问题怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Babylon.j
2023-07-05

laravel中异常问题怎么解决

这篇文章主要讲解了“laravel中异常问题怎么解决”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“laravel中异常问题怎么解决”吧!laravel中的异常有:1、“E_ERROR”致命运
2023-07-02

Laravel中用Observer事件致Redis队列异常问题怎么解决

本篇内容主要讲解“Laravel中用Observer事件致Redis队列异常问题怎么解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Laravel中用Observer事件致Redis队列异常问
2023-06-21

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录