forked from React-Group/interstellar_ai
Removed unused constant
This commit is contained in:
parent
1ec120b933
commit
e769a85073
1 changed files with 0 additions and 14 deletions
|
@ -197,20 +197,6 @@ const InputOutputBackend: React.FC = () => {
|
||||||
await ffmpegRef.current.load()
|
await ffmpegRef.current.load()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const convertOggToWav = async (oggFile: File | Blob) => {
|
|
||||||
await loadFFmpeg()
|
|
||||||
|
|
||||||
const ffmpeg = ffmpegRef.current!
|
|
||||||
|
|
||||||
await ffmpeg.writeFile("input.ogg", await fetchFile(oggFile))
|
|
||||||
await ffmpeg.exec(["-i", "input.ogg", "output.wav"])
|
|
||||||
const wavData = await ffmpeg.readFile("output.wav")
|
|
||||||
console.log(wavData);
|
|
||||||
const wavBlob = new Blob([wavData], { type: "audio/wav" })
|
|
||||||
audioRef.current = URL.createObjectURL(wavBlob)
|
|
||||||
return wavBlob
|
|
||||||
}
|
|
||||||
|
|
||||||
const stopRecording = () => {
|
const stopRecording = () => {
|
||||||
mediaRecorderRef.current?.stop()
|
mediaRecorderRef.current?.stop()
|
||||||
|
|
Loading…
Reference in a new issue