Discord Bot没有播放音乐

时间:2020-06-13 23:06:15

标签: audio discord discord.py audio-player discord.py-rewrite

我一直在关注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()

1 个答案:

答案 0 :(得分:0)

您正在使用discord.py以前版本中的语法,该语法不再起作用。 看看discord.py迁移到v1时所做的changes

编辑Here's一个例子