feat: made ytdl upload the downloaded file to discord when completed

This commit is contained in:
Seaswimmer 2023-08-01 00:03:48 -04:00
parent 6825d2c947
commit c8f52c12f7
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -56,6 +56,10 @@ class MusicDownloader(commands.Cog):
}
with YoutubeDL(ydl_opts) as ydl:
error_code = ydl.download(url)
with YoutubeDL(ydl_opts) as ydl:
info = ydl.extract_info(url=url, download=False)
title = info['title']
return title
data_path = await self.config.save_directory()
if subfolder:
data_path = os.path.join(data_path, subfolder)
@ -86,4 +90,9 @@ class MusicDownloader(commands.Cog):
else:
msg = ctx.send
message = await msg("YouTube Downloader started!")
youtube_download(self, url, data_path, message)
title = youtube_download(self, url, data_path, message)
matching_files = [file for file in os.listdir(data_path) if file.startswith(title)]
if len(matching_files) == 1:
full_filename = os.path.join(data_path, matching_files[0])
with open(full_filename, 'r') as file:
await ctx.send(content="Downloaded file:", file=discord.File(file, f'{title}.m4a'))