赞 | 20 |
VIP | 0 |
好人卡 | 1 |
积分 | 37 |
经验 | 9653 |
最后登录 | 2024-2-17 |
在线时间 | 1133 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3657
- 在线时间
- 1133 小时
- 注册时间
- 2017-4-6
- 帖子
- 278
|
需要手动导入m4a文件,每个音频文件需要有ogg和m4a两个文件,用这个插件可以只放ogg就可以了,手机没有尝试,在电脑上运行是可行的
- /*:
- * Audio_Additional_Support.js
- * @plugindesc Among various audio formats,
- * This plugin can only play OGG files in the RPG Maker MV.
- * @author biud436
- * @help
- *
- */
- var Imported = Imported || {};
- Imported.OnlyOGG = true;
- (function() {
- WebAudio._createContext = function() {
- try {
- this._context = new (AudioContext || webkitAudioContext || mozAudioContext)();
- } catch (e) {
- this._context = null;
- }
- };
- WebAudio._detectCodecs = function() {
- var audio = document.createElement('audio');
- if (audio.canPlayType) {
- this._canPlayOgg = audio.canPlayType('audio/ogg; codecs="vorbis"');
- this._canPlayM4a = audio.canPlayType('audio/x-m4a');
- }
- };
- AudioManager.audioFileExt = function() {
- if (WebAudio.canPlayOgg()) {
- return '.ogg';
- } else {
- return '.m4a';
- }
- };
复制代码 |
|