@router.callback_query(F.text.regexp(r"(https?://)?(www\.)?(youtube\.com|youtu\.be)/[^\s]+"))
async def link_dtc(callback: CallbackQuery):
await callback.message.answer("please choose download options",
reply_markup=keyboard)
@router.callback_query(F.data == "dl_360")
async def threep_handler(callback: CallbackQuery):
await
I'm making a telegram bot using aiogram I have been made a handler but after searching and googling I didn't find how to use yt-dlp
how do I make the handler able to download video using yt-dlp?