Tes rewrite ytdl

This commit is contained in:
yasir 2022-12-10 12:05:50 +07:00
parent 7c02282882
commit e5b12ea168

View file

@ -20,11 +20,11 @@ YT_DB = {}
async def ytdownv2(_, message): async def ytdownv2(_, message):
if len(message.command) == 1: if len(message.command) == 1:
return await message.reply("Please input a valid YT-DLP Supported URL") return await message.reply("Please input a valid YT-DLP Supported URL")
query = message.text.split(" ", maxsplit=1)[1] url = message.text.split(" ", maxsplit=1)[1]
async with iYTDL( async with iYTDL(
log_group_id=0, cache_path="cache", ffmpeg_location="/usr/bin/mediaextract" log_group_id=0, cache_path="cache", ffmpeg_location="/usr/bin/mediaextract"
) as ytdl: ) as ytdl:
x = await ytdl.parse("https://www.youtube.com/watch?v=VGt-BZ-SxGI") x = await ytdl.parse(url)
img = x.image_url img = x.image_url
caption = x.caption caption = x.caption
markup = x.buttons markup = x.buttons