mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
Updated to cocurrent downloads attempt 1
This commit is contained in:
parent
ceede47841
commit
07a2315703
3 changed files with 55 additions and 7 deletions
|
@ -8,7 +8,7 @@ import socketio
|
||||||
import logging
|
import logging
|
||||||
import json
|
import json
|
||||||
import pathlib
|
import pathlib
|
||||||
|
import sys
|
||||||
from ytdl import DownloadQueueNotifier, DownloadQueue
|
from ytdl import DownloadQueueNotifier, DownloadQueue
|
||||||
|
|
||||||
log = logging.getLogger('main')
|
log = logging.getLogger('main')
|
||||||
|
@ -238,4 +238,7 @@ app.on_response_prepare.append(on_prepare)
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
log.info(f"Listening on {config.HOST}:{config.PORT}")
|
log.info(f"Listening on {config.HOST}:{config.PORT}")
|
||||||
web.run_app(app, host=config.HOST, port=int(config.PORT), reuse_port=True)
|
if sys.platform.startswith('win'):
|
||||||
|
web.run_app(app, host=config.HOST, port=int(config.PORT))
|
||||||
|
else:
|
||||||
|
web.run_app(app, host=config.HOST, port=int(config.PORT), reuse_port=True)
|
||||||
|
|
45
app/ytdl.py
45
app/ytdl.py
|
@ -5,6 +5,7 @@ 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
|
||||||
|
@ -104,14 +105,13 @@ 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 = multiprocessing.Process(target=self._download)
|
self.proc = await asyncio.get_running_loop().run_in_executor(None, 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 await self.loop.run_in_executor(None, self.proc.join)
|
return self.proc
|
||||||
|
|
||||||
def cancel(self):
|
def cancel(self):
|
||||||
if self.running():
|
if self.running():
|
||||||
|
@ -208,15 +208,50 @@ 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()
|
||||||
|
|
||||||
|
async def __download_entry(self, id, entry):
|
||||||
|
async with self.semaphore:
|
||||||
|
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.__download())
|
asyncio.create_task(self.__process_queue())
|
||||||
asyncio.create_task(self.__import_queue())
|
asyncio.create_task(self.__import_queue())
|
||||||
|
|
||||||
def __extract_info(self, url):
|
def __extract_info(self, url):
|
||||||
|
|
10
docker-compose.yml
Normal file
10
docker-compose.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
metube:
|
||||||
|
image: ghcr.io/alexta69/metube
|
||||||
|
container_name: metube
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8081:8081"
|
||||||
|
volumes:
|
||||||
|
- c:/Users/Roger/Downloads:/downloads
|
Loading…
Add table
Add a link
Reference in a new issue