This commit is contained in:
Timothy Jaeryang Baek
2026-05-09 04:22:46 +09:00
parent c1202a2327
commit 8ffc3d746f
2 changed files with 3 additions and 2 deletions

View File

@@ -238,7 +238,7 @@
return;
}
const mineTypes = ['audio/webm; codecs=opus', 'audio/mp4'];
const mineTypes = ['audio/webm; codecs=opus', 'audio/webm', 'audio/ogg; codecs=opus', 'audio/mp4', 'audio/wav'];
mediaRecorder = new MediaRecorder(stream, {
mimeType: mineTypes.find((type) => MediaRecorder.isTypeSupported(type))

View File

@@ -80,7 +80,8 @@ export class AudioQueue {
#halt() {
this.audio.pause();
this.audio.currentTime = 0;
this.audio.src = '';
this.audio.removeAttribute('src');
this.audio.load();
this.queue = [];
this.current = null;
}