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