跳转到内容
主菜单
主菜单
移至侧栏
隐藏
导航
首页
分类索引
最近更改
随便看看
灵兰秘典
捐助本站
帮助
帮助
联系我们
关于本站
MediaWiki帮助
USER-SIDEBAR
GROUP-SIDEBAR
CATEGORY-SIDEBAR
中医百科
搜索
搜索
外观
登录
个人工具
登录
查看“︁MediaWiki:Gadget-PrintOptions.js”︁的源代码
系统消息
讨论
English
阅读
查看源代码
查看历史
工具
工具
移至侧栏
隐藏
操作
阅读
查看源代码
查看历史
常规
链入页面
相关更改
特殊页面
页面信息
外观
移至侧栏
隐藏
←
MediaWiki:Gadget-PrintOptions.js
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
此页面为本wiki上的软件提供界面文本,并受到保护以防止滥用。 如欲修改所有wiki的翻译,请访问
translatewiki.net
上的MediaWiki本地化项目。
您无权编辑此JavaScript页面,因为编辑此页面可能会影响所有访问者。
您可以查看和复制此页面的源代码。
// ==UserScript== // @name Safe Web Audio Implementation // @namespace https://github.com/ // @version 1.0 // @description Proper AudioContext initialization with full error handling // @author You // @match *://*/* // @grant none // @require https://cdn.jsdelivr.net/npm/web-audio-api-shim@0.2.6/build/WebAudioAPI.min.js // ==/UserScript== (function() { 'use strict'; // 🔊 Audio Context Manager Class class AudioSystem { constructor(options = {}) { this.options = { latencyHint: 'interactive', sampleRate: 44100, ...options }; this.context = null; this.init(); } // 🔍 Detect supported AudioContext class static getAudioContextClass() { const prefixes = ['', 'webkit', 'moz', 'ms']; for (const prefix of prefixes) { const name = prefix ? `${prefix}AudioContext` : 'AudioContext'; if (window[name]) return window[name]; } return null; } // 🏗️ Initialize audio system init() { const AudioContextClass = AudioSystem.getAudioContextClass(); if (!AudioContextClass) { console.warn('Web Audio API not supported'); return; } try { this.context = new AudioContextClass(this.options); this.setupEventListeners(); this.log('AudioContext created'); } catch (error) { console.error('AudioContext initialization failed:', error); } } // 🎛️ Setup state management setupEventListeners() { if (!this.context) return; // Monitor state changes this.context.onstatechange = () => { this.log(`State changed: ${this.context.state}`); if (this.context.state === 'suspended') { this.addActivationTriggers(); } }; // Initial activation check if (this.context.state === 'suspended') { this.addActivationTriggers(); } } // 🖱️ Add user interaction triggers addActivationTriggers() { const events = ['click', 'keydown', 'touchstart']; const handler = () => { if (this.context && this.context.state === 'suspended') { this.context.resume() .then(() => this.log('Audio resumed successfully')) .catch(err => console.error('Resume failed:', err)); } // Remove after first activation events.forEach(e => document.removeEventListener(e, handler)); }; events.forEach(e => document.addEventListener(e, handler)); } // 📝 Logging helper log(message) { console.log(`[AudioSystem] ${message}`); } // 🎵 Safe audio playback playBuffer(buffer) { if (!this.context || this.context.state !== 'running') { console.warn('Audio not ready'); return null; } try { const source = this.context.createBufferSource(); source.buffer = buffer; source.connect(this.context.destination); source.start(); return source; } catch (error) { console.error('Playback failed:', error); return null; } } } // 🚀 Startup sequence document.addEventListener('DOMContentLoaded', () => { const audioSystem = new AudioSystem({ latencyHint: 'balanced', sampleRate: 48000 }); // Example usage setTimeout(() => { if (audioSystem.context) { // Load and play dummy sound const buffer = audioSystem.context.createBuffer( 1, audioSystem.context.sampleRate * 0.5, audioSystem.context.sampleRate ); audioSystem.playBuffer(buffer); } }, 3000); }); })();
返回
MediaWiki:Gadget-PrintOptions.js
。