Дискорд бот не воспроизводит песню

Я написал бота, который должен проигрывать музыку в голосовом канале, но он может только подключаться и при этом команда play не работает. Как это исправить?

вот код

import discord
from discord.ext import commands,tasks
import os
from dotenv import load_dotenv
from discord.utils import get
from discord import FFmpegPCMAudio
from discord import TextChannel
import youtube_dl
import json
import requests
from config import settings

load_dotenv()

DISCORD_TOKEN = os.getenv("discord_token")
intents = discord.Intents().all()
client = discord.Client(intents=intents)
bot = commands.Bot(command_prefix = settings['prefix'])

youtube_dl.utils.bug_reports_message = lambda: ''

ytdl_format_options = {
    'format': 'bestaudio/best',
    'restrictfilenames': True,
    'noplaylist': True,
    'nocheckcertificate': True,
    'ignoreerrors': False,
    'logtostderr': False,
    'quiet': True,
    'no_warnings': True,
    'default_search': 'auto',
    'source_address': '0.0.0.0'
}

ffmpeg_options = {
    'options': '-vn'
}

ytdl = youtube_dl.YoutubeDL(ytdl_format_options)

class YTDLSource(discord.PCMVolumeTransformer):
    def __init__(self, source, *, data, volume=0.5):
        super().__init__(source, volume)
        self.data = data
        self.title = data.get('title')
        self.url = ""

    @classmethod
    async def from_url(cls, url, *, loop=None, stream=False):
        loop = loop or asyncio.get_event_loop()
        data = await loop.run_in_executor(None, lambda: ytdl.extract_info(url, download=not stream))
        if 'entries' in data:
            data = data['entries'][0]
        filename = data['title'] if stream else ytdl.prepare_filename(data)
        return filename

@bot.command(name='join', help='Приглашает бота в голсовой канал')
async def join(ctx):
    if not ctx.message.author.voice:
        await ctx.send("{} не подключен к голосовому каналу".format(ctx.message.author.name))
        return
    else:
        channel = ctx.message.author.voice.channel
    await channel.connect()
    
@bot.command(name='leave', help='выпинываем бота')
async def leave(ctx):
    voice_client = ctx.message.guild.voice_client
    if voice_client.is_connected():
        await voice_client.disconnect()
    else:
        await ctx.send("Бот не подключен к голосовому каналу.")

@bot.command(name='play_song', help='Чтобы воспроизвести песню')
async def play(ctx,url):
    try :
        server = ctx.message.guild
        voice_channel = server.voice_client
        async with ctx.typing():
            filename = await YTDLSource.from_url(url, loop=bot.loop)
            voice_channel.play(discord.FFmpegPCMAudio(executable="ffmpeg.exe", source=filename))
        await ctx.send('**Сейчас играет:** {}'.format(filename))
    except:
        await ctx.send("Бот не подключен к голосовому каналу.")

@bot.command(name='resume', help='Возобновляет песню')
async def resume(ctx):
    voice_client = ctx.message.guild.voice_client
    if voice_client.is_paused():
        await voice_client.resume()
    else:
        await ctx.send("До этого бот ничего не играл. Используйте команду play_song")
        
@bot.command(name='stop', help='Останавливает песню')
async def stop(ctx):
    voice_client = ctx.message.guild.voice_client
    if voice_client.is_playing():
        await voice_client.stop()
    else:
        await ctx.send("Бот в данный момент молчит.")

bot.run(settings['token'])

Так а что происходит, что выводит, ошибки какие-нибудь выдает?

В том, то и дело, что ошибок нет, просто не работает одна из команд(play).
Я думаю что дело в ffmpeg, но в чем именно проблема не могу понять.

Наверно потому что надо не просто проглатывать ошибки, а выводить хоть куда-то.

except Exception as exc:
    print(exc)

Он начал выводить что “бот не подключен к голосовому каналу”, но он находится в нём, что это значит

Потому что текст не соответствует действительности.

Он выведется если во время выполнения этого кода

произошла ошибка.

Потому и говорю

Так теперь при попытке использовать команду play появилась полноценная ошибка

discord.ext.commands.errors.MissingRequiredArgument: url is a required argument that is missing.

Так тут похоже просто не передается ссылка при вызове команды пользователем.

Видимо надо писать $play https://youtube.........

https://discordpy.readthedocs.io/en/stable/ext/commands/commands.html