G
Size: a a a
G
G
NK
G
YL
async def download_video(url, username):
try:
ydl = youtube_dl.YoutubeDL({'outtmpl': str(username)})
print('Start downloading')
with ydl:
result = ydl.extract_info(
url,
download=True
)
await send_video(f"./{str(username)}")
except Exception as e:
print("Error ",e)
YL
download_video
запихал вызов функции send_video
?YL
YL
YL
YL
YL
NK
NK
YL
YL
NK
YL
G
YL
G