This commit is contained in:
2024-09-19 16:39:22 +02:00
parent 5697f057d9
commit 6011ab5cd4
+2 -1
View File
@@ -159,9 +159,10 @@ class Transcriber(commands.Cog):
async def test(self, ctx):
logger.info("Attempt transcribe")
vc = None
vc = await ctx.author.voice.channel.connect(cls=voice_recv.VoiceRecvClient)
logger.info(self.bot.voice_clients)
logger.info("Connected")
vc = await ctx.author.voice.channel.connect(cls=voice_recv.VoiceRecvClient)
logger.info(self.bot.voice_clients)
vc.listen(self.wsink)
@commands.command(name="stop_transcribe")