问题标签 [audiojs]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
37 浏览

javascript - 为什么此页面上不显示音频播放器 UI?

我正在编写一个网络应用程序,它应该在某个页面上显示以下内容:

  1. AudioJS 播放器
  2. 反馈面板(评分和评论)

我希望播放器出现在反馈面板之前。

如果我将以下代码放入该页面,则会显示音频播放器。

代码:

结果:

截屏

但是当我更改代码使音频播放器出现反馈面板之前时,后者消失了。

代码:

结果:

截屏

我该如何解决(让音频播放器出现在反馈表之前)?

0 投票
2 回答
425 浏览

html - Moodle 3 中的 Audio.js | 如何使它工作?

好的,简短的长问题:我决定在moodle中使用audio.js。我已将文件上传到 public_html。当我将此代码添加到“HEAD”时:

然后在moodle quiz中使用默认的“导入媒体->音频”(示例代码如下):

我可以说,当预览结果时,根本没有任何变化......播放器似乎根本没有改变。那么它必须,对吧?我想更改 html5 音频播放器设计,这就是我使用 Audio.js 的原因。我究竟做错了什么?PS,我应该提到我使用最新的moodle 3(更新到最新的几天前)。


完整的解决方案可以在这里找到

0 投票
1 回答
1511 浏览

html - 音频.js | 如何让它只显示播放/暂停按钮

所以我在我的网站上安装了 audio.js。一切正常。我希望它改变它的外观。实际上,我希望它只显示为播放按钮(或播放/暂停按钮)。或者换句话说:我想隐藏进度条和“时间过去|剩余时间”。我怎样才能做到这一点?

0 投票
1 回答
189 浏览

javascript - 如何使 Audio.js 与穆德尔测验中的文本内联

所以我在我的网站上使用了 audio.js。我自定义了 audio.min.js,只有“播放/暂停”按钮可见。我希望该按钮出现在文本的左侧。我怎样才能做到这一点?

因为现在,文本总是出现在“播放/暂停”按钮下方的新行中。我希望它在同一条线上。

我的 HTML 页面上的代码如下所示:

0 投票
1 回答
402 浏览

javascript - Control Multiple Audio Access in Single Page using JQuery

Hiii Everyone,

This is the sample code for my audio play.It will buffer and start play in 10 secs after that it willnot play again the same audio this the scenario I tried.

And this is the reference https://kolber.github.io/audiojs/ In my site I have nearly 17 audio. Each div enclose with single audio. first div is having audio with id "player(means 1st audio)" similarly in 2nd div "player1(means 2nd audio)" audio will be there.for first div I will have one button with "next question" similarly for all 17 divs there will be previous and next button.What is the issue is all 17 audios are buffered and played simultaneously Instead "player(means 1st audio)" will start buffer once the page opened.And when I click next button second audio should start buffer.And if I press previous button "player(means 1st audio)" should not be play again because only one time It should play.Similarly it will work for all audio.If anybody give me solution for this Issue.It will be more helpful.Im struggling in this issue longtime.Please help me anyone.Thanks in advance.

0 投票
1 回答
389 浏览

javascript - AudioJS, jQuery 不允许加载本地资源

我知道有类似的问题,但我找不到解释我想要做什么的问题。

在我将要工作的其中一项活动中,MC 需要从他的浏览器中播放音乐(它已被设置为更新所有现场时间表)。

我遇到的问题是Not allowed to load local resource当我尝试从本地驱动器加载音频文件时出现错误。

我尝试从本地驱动器加载文件的原因是,如果网络出现故障或本地服务器发生故障,那么事件仍然可以继续。

我读过 Chrome 出于隐私和安全原因给出了这个错误,但 Firefox 不会加载文件并且这样做没有给出错误。

是否有浏览器可以做到这一点,或者有没有办法更改浏览器设置以允许这样做?

我尝试使用 Flash 设置将文件的位置添加为受信任的位置,但是我找不到显示"Load from local disk (only)".

提前谢谢。