mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 11:35:29 +00:00
99 lines
3.0 KiB
Python
99 lines
3.0 KiB
Python
# 3.12.23
|
|
|
|
import os
|
|
|
|
|
|
# External library
|
|
import httpx
|
|
from bs4 import BeautifulSoup
|
|
from rich.console import Console
|
|
|
|
|
|
# Internal utilities
|
|
from StreamingCommunity.Util.os import os_manager
|
|
from StreamingCommunity.Util.message import start_message
|
|
from StreamingCommunity.Util.headers import get_headers
|
|
from StreamingCommunity.Util.config_json import config_manager
|
|
from StreamingCommunity.Lib.Downloader import HLS_Downloader
|
|
|
|
|
|
# Logic class
|
|
from StreamingCommunity.Api.Template.config_loader import site_constant
|
|
from StreamingCommunity.Api.Template.Class.SearchType import MediaItem
|
|
|
|
|
|
# Player
|
|
from StreamingCommunity.Api.Player.supervideo import VideoSource
|
|
|
|
|
|
# Variable
|
|
console = Console()
|
|
max_timeout = config_manager.get_int("REQUESTS", "timeout")
|
|
|
|
|
|
def download_film(select_title: MediaItem) -> str:
|
|
"""
|
|
Downloads a film using the provided film ID, title name, and domain.
|
|
|
|
Parameters:
|
|
- select_title (MediaItem): The selected media item.
|
|
|
|
Return:
|
|
- str: output path if successful, otherwise None
|
|
"""
|
|
start_message()
|
|
console.print(f"[yellow]Download: [red]{select_title.name} \n")
|
|
|
|
# Extract mostraguarda link
|
|
try:
|
|
response = httpx.get(select_title.url, headers=get_headers(), timeout=10)
|
|
response.raise_for_status()
|
|
|
|
except Exception as e:
|
|
console.print(f"[red]Error fetching the page: {e}")
|
|
return None
|
|
|
|
# Create mostraguarda url
|
|
soup = BeautifulSoup(response.text, "html.parser")
|
|
iframe_tag = soup.find_all("iframe")
|
|
url_mostraGuarda = iframe_tag[0].get('data-src')
|
|
if not url_mostraGuarda:
|
|
console.print("Error: data-src attribute not found in iframe.")
|
|
|
|
# Extract supervideo URL
|
|
try:
|
|
response = httpx.get(url_mostraGuarda, headers=get_headers(), timeout=10)
|
|
response.raise_for_status()
|
|
|
|
except Exception as e:
|
|
console.print(f"[red]Error fetching mostraguarda link: {e}")
|
|
console.print("[yellow]Missing access credentials. This part of the code is still under development.")
|
|
return None
|
|
|
|
# Create supervio URL
|
|
soup = BeautifulSoup(response.text, "html.parser")
|
|
player_links = soup.find("ul", class_="_player-mirrors")
|
|
player_items = player_links.find_all("li")
|
|
supervideo_url = "https:" + player_items[0].get("data-link")
|
|
if not supervideo_url:
|
|
return None
|
|
|
|
# Init class
|
|
video_source = VideoSource(url=supervideo_url)
|
|
master_playlist = video_source.get_playlist()
|
|
|
|
# Define the filename and path for the downloaded film
|
|
title_name = os_manager.get_sanitize_file(select_title.name) + ".mp4"
|
|
mp4_path = os.path.join(site_constant.MOVIE_FOLDER, title_name.replace(".mp4", ""))
|
|
|
|
# Download the film using the m3u8 playlist, and output filename
|
|
r_proc = HLS_Downloader(
|
|
m3u8_url=master_playlist,
|
|
output_path=os.path.join(mp4_path, title_name)
|
|
).start()
|
|
|
|
if r_proc['error'] is not None:
|
|
try: os.remove(r_proc['path'])
|
|
except: pass
|
|
|
|
return r_proc['path'] |