Привет. Пишу бота для собственного сервера. Решил реализовать команду воспроизведения музыки по ссылке простой командой .play url. Использую библиотеку discord.py, а для музыки youtube_dl. Нашёл способ как сделать, но основная библиотека уже более улучшенная и тот способ совсем не подходит, поэтому возникают ошибки. Ошибок осталось мало, две ошибки уже решил. Суть в том, что discord.py с youtube_dl не хочет видимо работать, либо я не понимаю суть ошибки, либо я что-то просто делаю не так. Даже пришлось из discord.py импортировать функцию VoiceClient.
Ошибка:
Ignoring exception in command play:
Traceback (most recent call last):
File "C:\Users\Степан\AppData\Local\Programs\Python\Python38-32\lib\site-packages\discord\ext\commands\core.py", line 83, in wrapped
ret = await coro(*args, **kwargs)
File "c:/Users/Степан/Desktop/Clown/main.py", line 57, in play
player = await voice_client.create_ytdl_player(url)
AttributeError: 'VoiceClient' object has no attribute 'create_ytdl_player'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\Users\Степан\AppData\Local\Programs\Python\Python38-32\lib\site-packages\discord\ext\commands\bot.py", line 892, in invoke
await ctx.command.invoke(ctx)
File "C:\Users\Степан\AppData\Local\Programs\Python\Python38-32\lib\site-packages\discord\ext\commands\core.py", line 797, in invoke
await injected(*ctx.args, **ctx.kwargs)
File "C:\Users\Степан\AppData\Local\Programs\Python\Python38-32\lib\site-packages\discord\ext\commands\core.py", line 92, in wrapped
raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'VoiceClient' object has no attribute 'create_ytdl_player'
Код:
import discord
import config
import random
import variables
import youtube_dl
from discord import utils
from discord.ext import commands
from discord.voice_client import VoiceClient
client = commands.Bot(command_prefix='.')
players = {}
@client.command(pass_context=True)
async def play(ctx, url):
channel = ctx.author.voice.channel
await channel.connect()
server = ctx.message.guild
voice_client = discord.utils.find(lambda c: c.guild.id == server.id, client.voice_clients)
player = await voice_client.create_ytdl_player(url) # < Ошибка возникает тут
players[server.id] = player
player.start()