我一直在关注2年前的不和谐机器人教程。如您所知,他们重新制作了discord.py,经过大约一个小时的搜索,我发现存在相同问题但没有答案的人。我不断收到“AttributeError:'VoiceClient'对象没有属性'create_ytdl_player'”。如果有人有任何东西,将不胜感激。

@client.command(pass_context = True)
async def play(ctx):
    guild = ctx.message.guild
    voice_client = ctx.guild.voice_client
    player = await voice_client.create_ytdl_player("https://youtu.be/HKe1jFjojzA")
    players[guild.id] = player
    player.start()

最佳答案

您使用的是先前版本discord.py的语法,该语法已无法使用。
查看discord.py迁移到v1时生成的changes

编辑:
Here's一个例子

关于audio - Discord Bot没有播放音乐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62366555/

10-12 21:35