How can I change audio/webm to audio/wav?
onOutput(audio: any) {
const file = new File([audio], 'audio.webm', { type: 'audio/webm' });
this.sendFile(file);
}
I do something like this, but in the end I need to send not a .webm, but a .wav
Please tell me where to go!