2019-10-10 23:58:06 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2019-2020 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
|
2020-09-26 17:41:26 +00:00
|
|
|
* CacheMap
|
2020-09-10 16:06:56 +00:00
|
|
|
* TextToSpeechAudio
|
|
|
|
*/
|
2019-10-13 03:59:21 +00:00
|
|
|
|
2020-03-07 17:44:14 +00:00
|
|
|
class AudioSystem {
|
2020-09-26 17:41:26 +00:00
|
|
|
constructor({getAudioInfo, cacheSize=32}) {
|
|
|
|
this._cache = new CacheMap(cacheSize);
|
|
|
|
this._getAudioInfo = getAudioInfo;
|
|
|
|
}
|
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.
|
|
|
|
if (typeof speechSynthesis === 'undefined') { return; }
|
|
|
|
|
|
|
|
const eventListeners = new EventListenerCollection();
|
|
|
|
const onVoicesChanged = () => { eventListeners.removeAllEventListeners(); };
|
|
|
|
eventListeners.addEventListener(speechSynthesis, 'voiceschanged', onVoicesChanged, false);
|
2020-03-07 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
async createDefinitionAudio(sources, expression, reading, details) {
|
|
|
|
const key = [expression, reading];
|
2020-04-10 20:12:55 +00:00
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
const cacheValue = this._cache.get(key);
|
|
|
|
if (typeof cacheValue !== 'undefined') {
|
|
|
|
const {audio, source} = cacheValue;
|
|
|
|
const index = sources.indexOf(source);
|
|
|
|
if (index >= 0) {
|
|
|
|
return {audio, index};
|
2020-04-10 20:12:55 +00:00
|
|
|
}
|
2020-03-07 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 20:38:53 +00:00
|
|
|
for (let i = 0, ii = sources.length; i < ii; ++i) {
|
|
|
|
const source = sources[i];
|
2020-09-26 17:41:26 +00:00
|
|
|
const info = await this._getAudioInfo(source, expression, reading, details);
|
|
|
|
if (info === null) { continue; }
|
2020-03-07 17:44:14 +00:00
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
let audio;
|
2020-03-07 17:44:14 +00:00
|
|
|
try {
|
2020-09-26 17:41:26 +00:00
|
|
|
switch (info.type) {
|
|
|
|
case 'url':
|
|
|
|
{
|
|
|
|
const {details: {url}} = info;
|
|
|
|
audio = await this.createAudio(url);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'tts':
|
|
|
|
{
|
|
|
|
const {details: {text, voice}} = info;
|
|
|
|
audio = this.createTextToSpeechAudio(text, voice);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported type: ${info.type}`);
|
2020-04-10 20:12:55 +00:00
|
|
|
}
|
2020-03-07 17:44:14 +00:00
|
|
|
} catch (e) {
|
2020-09-26 17:41:26 +00:00
|
|
|
continue;
|
2020-03-07 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
this._cache.set(key, {audio, source});
|
|
|
|
return {audio, index: i};
|
2020-05-02 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
throw new Error('Could not create audio');
|
2020-04-10 17:44:31 +00:00
|
|
|
}
|
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
createAudio(url) {
|
2020-03-07 17:44:14 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const audio = new Audio(url);
|
|
|
|
audio.addEventListener('loadeddata', () => {
|
2020-05-02 16:50:16 +00:00
|
|
|
if (!this._isAudioValid(audio)) {
|
2020-03-07 17:44:14 +00:00
|
|
|
reject(new Error('Could not retrieve audio'));
|
|
|
|
} else {
|
|
|
|
resolve(audio);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
audio.addEventListener('error', () => reject(audio.error));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-09-26 17:41:26 +00:00
|
|
|
// Private
|
2020-05-02 16:50:16 +00:00
|
|
|
|
|
|
|
_isAudioValid(audio) {
|
|
|
|
const duration = audio.duration;
|
|
|
|
return (
|
|
|
|
duration !== 5.694694 && // jpod101 invalid audio (Chrome)
|
|
|
|
duration !== 5.720718 // jpod101 invalid audio (Firefox)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|