mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 20:57:45 +03:00
Update ytdl.py
This commit is contained in:
parent
07a2315703
commit
50e67e1459
1 changed files with 43 additions and 44 deletions
87
app/ytdl.py
87
app/ytdl.py
|
@ -5,7 +5,6 @@ import shelve
|
||||||
import time
|
import time
|
||||||
import asyncio
|
import asyncio
|
||||||
import multiprocessing
|
import multiprocessing
|
||||||
from concurrent.futures import ThreadPoolExecutor
|
|
||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
from dl_formats import get_format, get_opts, AUDIO_FORMATS
|
from dl_formats import get_format, get_opts, AUDIO_FORMATS
|
||||||
|
@ -105,13 +104,14 @@ class Download:
|
||||||
if Download.manager is None:
|
if Download.manager is None:
|
||||||
Download.manager = multiprocessing.Manager()
|
Download.manager = multiprocessing.Manager()
|
||||||
self.status_queue = Download.manager.Queue()
|
self.status_queue = Download.manager.Queue()
|
||||||
self.proc = await asyncio.get_running_loop().run_in_executor(None, self._download)
|
self.proc = multiprocessing.Process(target=self._download)
|
||||||
|
self.proc.start()
|
||||||
self.loop = asyncio.get_running_loop()
|
self.loop = asyncio.get_running_loop()
|
||||||
self.notifier = notifier
|
self.notifier = notifier
|
||||||
self.info.status = 'preparing'
|
self.info.status = 'preparing'
|
||||||
await self.notifier.updated(self.info)
|
await self.notifier.updated(self.info)
|
||||||
asyncio.create_task(self.update_status())
|
asyncio.create_task(self.update_status())
|
||||||
return self.proc
|
return await self.loop.run_in_executor(None, self.proc.join)
|
||||||
|
|
||||||
def cancel(self):
|
def cancel(self):
|
||||||
if self.running():
|
if self.running():
|
||||||
|
@ -208,51 +208,19 @@ class DownloadQueue:
|
||||||
self.queue = PersistentQueue(self.config.STATE_DIR + '/queue')
|
self.queue = PersistentQueue(self.config.STATE_DIR + '/queue')
|
||||||
self.done = PersistentQueue(self.config.STATE_DIR + '/completed')
|
self.done = PersistentQueue(self.config.STATE_DIR + '/completed')
|
||||||
self.pending = PersistentQueue(self.config.STATE_DIR + '/pending')
|
self.pending = PersistentQueue(self.config.STATE_DIR + '/pending')
|
||||||
self.max_concurrent_downloads = 5 # Adjust this number as needed
|
|
||||||
self.semaphore = asyncio.Semaphore(self.max_concurrent_downloads)
|
|
||||||
self.executor = ThreadPoolExecutor(max_workers=self.max_concurrent_downloads)
|
|
||||||
self.done.load()
|
self.done.load()
|
||||||
|
self.max_concurrent_downloads = self.config.MAX_CONCURRENT_DOWNLOADS # New configuration option
|
||||||
async def __download_entry(self, id, entry):
|
self.active_downloads = set()
|
||||||
async with self.semaphore:
|
self.download_semaphore = asyncio.Semaphore(self.max_concurrent_downloads)
|
||||||
await entry.start(self.notifier)
|
|
||||||
if entry.info.status != 'finished':
|
|
||||||
if entry.tmpfilename and os.path.isfile(entry.tmpfilename):
|
|
||||||
try:
|
|
||||||
os.remove(entry.tmpfilename)
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
entry.info.status = 'error'
|
|
||||||
entry.close()
|
|
||||||
if self.queue.exists(id):
|
|
||||||
self.queue.delete(id)
|
|
||||||
if entry.canceled:
|
|
||||||
await self.notifier.canceled(id)
|
|
||||||
else:
|
|
||||||
self.done.put(entry)
|
|
||||||
await self.notifier.completed(entry.info)
|
|
||||||
|
|
||||||
async def __process_queue(self):
|
|
||||||
while True:
|
|
||||||
while self.queue.empty():
|
|
||||||
await self.event.wait()
|
|
||||||
self.event.clear()
|
|
||||||
|
|
||||||
tasks = []
|
|
||||||
while not self.queue.empty() and len(tasks) < self.max_concurrent_downloads:
|
|
||||||
id, entry = self.queue.next()
|
|
||||||
task = asyncio.create_task(self.__download_entry(id, entry))
|
|
||||||
tasks.append(task)
|
|
||||||
|
|
||||||
await asyncio.gather(*tasks)
|
|
||||||
async def __import_queue(self):
|
async def __import_queue(self):
|
||||||
for k, v in self.queue.saved_items():
|
for k, v in self.queue.saved_items():
|
||||||
await self.add(v.url, v.quality, v.format, v.folder, v.custom_name_prefix)
|
await self.add(v.url, v.quality, v.format, v.folder, v.custom_name_prefix)
|
||||||
|
|
||||||
async def initialize(self):
|
async def initialize(self):
|
||||||
self.event = asyncio.Event()
|
self.event = asyncio.Event()
|
||||||
asyncio.create_task(self.__process_queue())
|
asyncio.create_task(self.__manage_downloads())
|
||||||
asyncio.create_task(self.__import_queue())
|
await self.__import_queue()
|
||||||
|
|
||||||
def __extract_info(self, url):
|
def __extract_info(self, url):
|
||||||
return yt_dlp.YoutubeDL(params={
|
return yt_dlp.YoutubeDL(params={
|
||||||
|
@ -286,7 +254,17 @@ class DownloadQueue:
|
||||||
else:
|
else:
|
||||||
dldirectory = base_directory
|
dldirectory = base_directory
|
||||||
return dldirectory, None
|
return dldirectory, None
|
||||||
|
async def __manage_downloads(self):
|
||||||
|
while True:
|
||||||
|
while self.queue.empty():
|
||||||
|
log.info('waiting for item to download')
|
||||||
|
await self.event.wait()
|
||||||
|
self.event.clear()
|
||||||
|
|
||||||
|
async with self.download_semaphore:
|
||||||
|
id, entry = self.queue.next()
|
||||||
|
self.active_downloads.add(id)
|
||||||
|
asyncio.create_task(self.__process_download(id, entry))
|
||||||
async def __add_entry(self, entry, quality, format, folder, custom_name_prefix, auto_start, already):
|
async def __add_entry(self, entry, quality, format, folder, custom_name_prefix, auto_start, already):
|
||||||
if not entry:
|
if not entry:
|
||||||
return {'status': 'error', 'msg': "Invalid/empty data was given."}
|
return {'status': 'error', 'msg': "Invalid/empty data was given."}
|
||||||
|
@ -397,7 +375,28 @@ class DownloadQueue:
|
||||||
def get(self):
|
def get(self):
|
||||||
return(list((k, v.info) for k, v in self.queue.items()) + list((k, v.info) for k, v in self.pending.items()),
|
return(list((k, v.info) for k, v in self.queue.items()) + list((k, v.info) for k, v in self.pending.items()),
|
||||||
list((k, v.info) for k, v in self.done.items()))
|
list((k, v.info) for k, v in self.done.items()))
|
||||||
|
async def __process_download(self, id, entry):
|
||||||
|
try:
|
||||||
|
log.info(f'downloading {entry.info.title}')
|
||||||
|
await entry.start(self.notifier)
|
||||||
|
if entry.info.status != 'finished':
|
||||||
|
if entry.tmpfilename and os.path.isfile(entry.tmpfilename):
|
||||||
|
try:
|
||||||
|
os.remove(entry.tmpfilename)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
entry.info.status = 'error'
|
||||||
|
entry.close()
|
||||||
|
finally:
|
||||||
|
if self.queue.exists(id):
|
||||||
|
self.queue.delete(id)
|
||||||
|
if entry.canceled:
|
||||||
|
await self.notifier.canceled(id)
|
||||||
|
else:
|
||||||
|
self.done.put(entry)
|
||||||
|
await self.notifier.completed(entry.info)
|
||||||
|
self.active_downloads.remove(id)
|
||||||
|
self.download_semaphore.release()
|
||||||
async def __download(self):
|
async def __download(self):
|
||||||
while True:
|
while True:
|
||||||
while self.queue.empty():
|
while self.queue.empty():
|
||||||
|
@ -421,4 +420,4 @@ class DownloadQueue:
|
||||||
await self.notifier.canceled(id)
|
await self.notifier.canceled(id)
|
||||||
else:
|
else:
|
||||||
self.done.put(entry)
|
self.done.put(entry)
|
||||||
await self.notifier.completed(entry.info)
|
await self.notifier.completed(entry.info)
|
Loading…
Add table
Add a link
Reference in a new issue