mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 11:35:29 +00:00
90 lines
2.7 KiB
Python
90 lines
2.7 KiB
Python
# 3.12.23
|
|
|
|
import os
|
|
|
|
|
|
# External library
|
|
from rich.console import Console
|
|
|
|
|
|
# Internal utilities
|
|
from StreamingCommunity.Util.os import os_manager
|
|
from StreamingCommunity.Util.message import start_message
|
|
from StreamingCommunity.Lib.Downloader import HLS_Downloader
|
|
from StreamingCommunity.TelegramHelp.telegram_bot import TelegramSession, get_bot_instance
|
|
|
|
|
|
# Logic class
|
|
from StreamingCommunity.Api.Template.config_loader import site_constant
|
|
from StreamingCommunity.Api.Template.Class.SearchType import MediaItem
|
|
|
|
|
|
# Player
|
|
from StreamingCommunity.Api.Player.vixcloud import VideoSource
|
|
|
|
|
|
# Variable
|
|
console = Console()
|
|
|
|
|
|
def download_film(select_title: MediaItem, proxy: str = None) -> str:
|
|
"""
|
|
Downloads a film using the provided film ID, title name, and domain.
|
|
|
|
Parameters:
|
|
- domain (str): The domain of the site
|
|
- version (str): Version of site.
|
|
|
|
Return:
|
|
- str: output path
|
|
"""
|
|
if site_constant.TELEGRAM_BOT:
|
|
bot = get_bot_instance()
|
|
bot.send_message(f"Download in corso:\n{select_title.name}", None)
|
|
|
|
# Viene usato per lo screen
|
|
console.print(f"## Download: [red]{select_title.name} ##")
|
|
|
|
# Get script_id
|
|
script_id = TelegramSession.get_session()
|
|
if script_id != "unknown":
|
|
TelegramSession.updateScriptId(script_id, select_title.name)
|
|
|
|
# Start message and display film information
|
|
start_message()
|
|
console.print(f"[bold yellow]Download:[/bold yellow] [red]{site_constant.SITE_NAME}[/red] → [cyan]{select_title.name}[/cyan] \n")
|
|
|
|
# Init class
|
|
video_source = VideoSource(f"{site_constant.FULL_URL}/it", False, select_title.id, proxy)
|
|
|
|
# Retrieve scws and if available master playlist
|
|
video_source.get_iframe(select_title.id)
|
|
video_source.get_content()
|
|
master_playlist = video_source.get_playlist()
|
|
|
|
if master_playlist is None:
|
|
console.print(f"[red]Site: {site_constant.SITE_NAME}, error: No master playlist found[/red]")
|
|
return None
|
|
|
|
# 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 site_constant.TELEGRAM_BOT:
|
|
|
|
# Delete script_id
|
|
script_id = TelegramSession.get_session()
|
|
if script_id != "unknown":
|
|
TelegramSession.deleteScriptId(script_id)
|
|
|
|
if r_proc['error'] is not None:
|
|
try: os.remove(r_proc['path'])
|
|
except: pass
|
|
|
|
return r_proc['path'] |