remove buttons, its too much work for no bennifit

This commit is contained in:
insert-usernamehere 2023-04-16 13:35:20 -04:00
parent 8d0434641d
commit 59ca151e67

View file

@ -25,7 +25,8 @@ async def transcribesphinx(inter: disnake.ApplicationCommandInteraction, message
await inter.response.defer(ephemeral='true') await inter.response.defer(ephemeral='true')
await message.attachments[0].save("audio.ogg") await message.attachments[0].save("audio.ogg")
embed=disnake.Embed(title=st.recognize_sphinx(prepaudio("audio.ogg")), color=0x3584e4) embed=disnake.Embed(title=st.recognize_sphinx(prepaudio("audio.ogg")), color=0x3584e4)
embed.set_author(name=message.author.nick, url=message.jump_url, icon_url=message.author.display_avatar) embed.set_author(name=message.author.display_name, url=message.jump_url, icon_url=message.author.display_avatar)
embed.set_footer(text="Accuracy not guaranteed")
await inter.edit_original_message(embed=embed) await inter.edit_original_message(embed=embed)
os.remove("audio.ogg") os.remove("audio.ogg")
os.remove("audio.wav") os.remove("audio.wav")
@ -40,23 +41,13 @@ async def transcribesphinx(inter: disnake.ApplicationCommandInteraction, message
# WARNING Google is propritary, consider disabling however sphynix is currently not very good so this provides an option # WARNING Google is propritary, consider disabling however sphynix is currently not very good so this provides an option
embed=disnake.Embed(title=st.recognize_google(prepaudio("audio.ogg")), color=0x3584e4) embed=disnake.Embed(title=st.recognize_google(prepaudio("audio.ogg")), color=0x3584e4)
embed.set_author(name=message.author.display_name, url=message.jump_url, icon_url=message.author.display_avatar) embed.set_author(name=message.author.display_name, url=message.jump_url, icon_url=message.author.display_avatar)
await inter.edit_original_message(embed=embed, components=[disnake.ui.Button(label="See more posibilites", style=disnake.ButtonStyle.success, custom_id="gp")]) embed.set_footer(text="Accuracy not guaranteed")
await inter.edit_original_message(embed=embed)
await asyncio.sleep(3) await asyncio.sleep(3)
os.remove("audio.ogg") os.remove("audio.ogg")
os.remove("audio.wav") os.remove("audio.wav")
except Exception as e: except Exception as e:
await inter.edit_original_message(content=f'an error appears to have occoured please report it to the developer: {e}') await inter.edit_original_message(content=f'an error appears to have occoured please report it to the developer: {e}')
@bot.listen("on_button_click")
async def extratranscribe(inter: disnake.MessageInteraction):
if inter.component.custom_id == "gp":
try:
await inter.response.defer(ephemeral='true')
await inter.attachments[0].save("audio.ogg")
embed=disnake.Embed(title=st.recognize_google(prepaudio("audio.ogg"), show_all=True), color=0x3584e4)
embed.set_author(name=inter.author.nick, url=inter.jump_url, icon_url=inter.author.display_avatar)
await inter.edit_original_message(embed=embed)
except Exception as e:
await inter.edit_original_message(content=f'The interaction has expiredS')
bot.run(os.getenv("TOKEN")) bot.run(os.getenv("TOKEN"))