2019-10-10 23:58:06 +00:00
|
|
|
/*
|
2021-01-01 19:50:41 +00:00
|
|
|
* Copyright (C) 2019-2021 Yomichan Authors
|
2019-10-10 23:58:06 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-10-10 23:58:06 +00:00
|
|
|
*/
|
|
|
|
|
2020-09-10 16:06:56 +00:00
|
|
|
/* global
|
|
|
|
* TextToSpeechAudio
|
|
|
|
*/
|
2019-10-13 03:59:21 +00:00
|
|
|
|
2021-04-11 03:55:11 +00:00
|
|
|
class AudioSystem extends EventDispatcher {
|
2021-01-23 03:10:27 +00:00
|
|
|
constructor() {
|
2021-04-11 03:55:11 +00:00
|
|
|
super();
|
2021-01-18 04:05:15 +00:00
|
|
|
this._fallbackAudio = null;
|
2020-09-26 17:41:26 +00:00
|
|
|
}
|
2020-03-07 17:44:14 +00:00
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
prepare() {
|
|
|
|
// speechSynthesis.getVoices() will not be populated unless some API call is made.
|
2021-04-11 03:55:11 +00:00
|
|
|
if (
|
|
|
|
typeof speechSynthesis !== 'undefined' &&
|
|
|
|
typeof speechSynthesis.addEventListener === 'function'
|
|
|
|
) {
|
|
|
|
speechSynthesis.addEventListener('voiceschanged', this._onVoicesChanged.bind(this), false);
|
|
|
|
}
|
2020-03-07 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 04:05:15 +00:00
|
|
|
getFallbackAudio() {
|
|
|
|
if (this._fallbackAudio === null) {
|
2021-02-13 01:37:43 +00:00
|
|
|
this._fallbackAudio = new Audio('/data/audio/button.mp3');
|
2021-01-18 04:05:15 +00:00
|
|
|
}
|
|
|
|
return this._fallbackAudio;
|
|
|
|
}
|
|
|
|
|
2021-06-05 00:17:04 +00:00
|
|
|
async createAudio(url, sourceType) {
|
|
|
|
const audio = new Audio(url);
|
|
|
|
await this._waitForData(audio);
|
|
|
|
if (!this._isAudioValid(audio, sourceType)) {
|
|
|
|
throw new Error('Could not retrieve audio');
|
|
|
|
}
|
|
|
|
return audio;
|
2020-03-07 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
createTextToSpeechAudio(text, voiceUri) {
|
|
|
|
const voice = this._getTextToSpeechVoiceFromVoiceUri(voiceUri);
|
|
|
|
if (voice === null) {
|
|
|
|
throw new Error('Invalid text-to-speech voice');
|
2020-08-02 22:58:19 +00:00
|
|
|
}
|
2020-09-26 17:41:26 +00:00
|
|
|
return new TextToSpeechAudio(text, voice);
|
2020-09-10 01:07:18 +00:00
|
|
|
}
|
|
|
|
|
2021-01-19 03:01:08 +00:00
|
|
|
// Private
|
|
|
|
|
2021-04-11 03:55:11 +00:00
|
|
|
_onVoicesChanged(e) {
|
|
|
|
this.trigger('voiceschanged', e);
|
|
|
|
}
|
|
|
|
|
2021-06-05 00:17:04 +00:00
|
|
|
_waitForData(audio) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
audio.addEventListener('loadeddata', () => resolve());
|
|
|
|
audio.addEventListener('error', () => reject(audio.error));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-30 16:15:07 +00:00
|
|
|
_isAudioValid(audio, sourceType) {
|
|
|
|
switch (sourceType) {
|
2021-01-23 02:09:43 +00:00
|
|
|
case 'jpod101':
|
|
|
|
{
|
|
|
|
const duration = audio.duration;
|
|
|
|
return (
|
|
|
|
duration !== 5.694694 && // Invalid audio (Chrome)
|
|
|
|
duration !== 5.720718 // Invalid audio (Firefox)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
2020-05-02 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
2020-03-07 17:44:14 +00:00
|
|
|
_getTextToSpeechVoiceFromVoiceUri(voiceUri) {
|
|
|
|
try {
|
|
|
|
for (const voice of speechSynthesis.getVoices()) {
|
|
|
|
if (voice.voiceURI === voiceUri) {
|
|
|
|
return voice;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|