diff --git a/transcribebot.py b/transcribebot.py index c587a1f..28edbc2 100644 --- a/transcribebot.py +++ b/transcribebot.py @@ -20,7 +20,7 @@ async def transcribe(inter: disnake.ApplicationCommandInteraction, message: disn convertemessage = sr.AudioFile("audio.wav") with convertemessage as sounds: transcribeaudo = st.record(sounds) - await inter.response.send_message(st.recognize_sphinx(transcribeaudo), file=disnake.File("audio.mp3")) + await inter.response.send_message(st.recognize_sphinx(transcribeaudo), file=disnake.File("audio.wav")) os.remove("audio.ogg") os.remove("audio.wav")