ydl -> ytdl (cosmetics; ocd)
This commit is contained in:
parent
4c585496a9
commit
12f625a432
1 changed files with 7 additions and 7 deletions
14
delojza.py
14
delojza.py
|
@ -175,23 +175,23 @@ class DelojzaBot:
|
|||
|
||||
# noinspection PyUnusedLocal
|
||||
def download_ytdl(self, urls, out_path, date, message, audio=False, filetitle=None):
|
||||
ydl_opts = {
|
||||
ytdl = {
|
||||
'noplaylist': True,
|
||||
'restrictfilenames': True,
|
||||
'outtmpl': os.path.join(self.tmp_dir, '{}__%(title)s__%(id)s.%(ext)s'.format(datestr(date)))
|
||||
}
|
||||
if audio:
|
||||
ydl_opts['format'] = 'bestaudio/best'
|
||||
ydl_opts['postprocessors'] = [{
|
||||
ytdl['format'] = 'bestaudio/best'
|
||||
ytdl['postprocessors'] = [{
|
||||
'key': 'FFmpegExtractAudio',
|
||||
'preferredcodec': 'mp3',
|
||||
'preferredquality': '256'
|
||||
}]
|
||||
filenames = []
|
||||
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
|
||||
ydl.download(urls)
|
||||
for info in [ydl.extract_info(url, download=False) for url in urls]:
|
||||
filename = ydl.prepare_filename(info)
|
||||
with youtube_dl.YoutubeDL(ytdl) as ytdl:
|
||||
ytdl.download(urls)
|
||||
for info in [ytdl.extract_info(url, download=False) for url in urls]:
|
||||
filename = ytdl.prepare_filename(info)
|
||||
globbeds = glob(os.path.splitext(filename)[0] + '.*')
|
||||
for globbed in globbeds:
|
||||
if globbed.endswith("mp3"):
|
||||
|
|
Loading…
Reference in a new issue