1
0
Fork 0
mirror of synced 2024-05-22 05:02:45 +12:00
bulk-downloader-for-reddit/bdfr/site_downloaders/fallback_downloaders/ytdlp_fallback.py
2022-12-03 15:11:17 +10:00

41 lines
1.1 KiB
Python

#!/usr/bin/env python3
# coding=utf-8
import logging
from typing import Optional
from praw.models import Submission
from bdfr.exceptions import NotADownloadableLinkError
from bdfr.resource import Resource
from bdfr.site_authenticator import SiteAuthenticator
from bdfr.site_downloaders.fallback_downloaders.fallback_downloader import (
BaseFallbackDownloader,
)
from bdfr.site_downloaders.youtube import Youtube
logger = logging.getLogger(__name__)
class YtdlpFallback(BaseFallbackDownloader, Youtube):
def __init__(self, post: Submission):
super(YtdlpFallback, self).__init__(post)
def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
out = Resource(
self.post,
self.post.url,
super()._download_video({}),
super().get_video_attributes(self.post.url)["ext"],
)
return [out]
@staticmethod
def can_handle_link(url: str) -> bool:
try:
attributes = YtdlpFallback.get_video_attributes(url)
except NotADownloadableLinkError:
return False
if attributes:
return True