import os
import yt_dlp
from rich.console import Console
from rich import print as rprint
import config as cg
def download(link, name='%(title)s'):
# Define the download options
ydl_opts = {
'format': 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]',
'outtmpl': f"{cg.videos_folder}/{name}.%(ext)s",
'quiet': True,
'prefer_ffmpeg': True
}
c = Console(log_path=False)
# Create the "videos" folder if it doesn't exist
if not os.path.exists(cg.videos_folder):
os.mkdir(cg.videos_folder)
with c.status(f"Downloading video from site: [i blue u]{link}", spinner='bounce') as status:
with yt_dlp.YoutubeDL(ydl_opts) as ydl:
info_dict = ydl.extract_info(link, download=True)
downloaded_file_path = ydl.prepare_filename(info_dict)
c.log(f"Video [i u blue]{downloaded_file_path}[/i u blue] downloaded!")
video_size = os.path.getsize(downloaded_file_path) / (1024 * 1024)
video_size = round(video_size, 2)
c.log(f'Size: {video_size} MB')
return downloaded_file_path