video_downloader_service/src/core/ydl.py

40 lines
1.3 KiB
Python
Raw Normal View History

2023-08-12 13:06:41 +03:00
from __future__ import unicode_literals
2023-08-14 17:47:15 +03:00
import os
import uuid
from datetime import datetime
2023-08-12 13:06:41 +03:00
from urllib.parse import urlparse
import youtube_dl
from src.exceptions.download_exceptions import SiteNotImplementedException
class VideoDownloader:
2023-08-14 17:47:15 +03:00
SUPPORTING_WEBSITES = [
"ok.ru", "vk.com", "www.youtube.com",
2023-08-14 17:47:15 +03:00
]
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BASE_DOWNLOAD_DIR = os.path.join(BASE_DIR, "downloads")
BASE_YOUTUBE_DIR = os.path.join(BASE_DOWNLOAD_DIR, "Youtube")
2023-08-12 13:06:41 +03:00
def __init__(self, link: str, ydl_opts: dict = None, username: str = None, password: str = None):
self.link = link
self.ydl_opts = ydl_opts
self.username = username
self.password = password
def get_info(self):
with youtube_dl.YoutubeDL(self.ydl_opts if self.ydl_opts else {}) as ydl:
return ydl.extract_info(self.link, download=False)
2023-08-12 13:06:41 +03:00
def download(self):
domain = urlparse(self.link).netloc
if domain not in self.SUPPORTING_WEBSITES:
raise SiteNotImplementedException
with youtube_dl.YoutubeDL(self.ydl_opts if self.ydl_opts else {}) as ydl:
ydl.download([self.link])
result = ydl.extract_info(self.link, download=False)
2023-08-14 17:47:15 +03:00
return result