mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-09 22:33:29 +00:00
refac
This commit is contained in:
parent
c1202a2327
commit
8ffc3d746f
2 changed files with 3 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue