How to Download Videos and Audios from a Video Link (On macOS)
Created by Bismoy Ghosh --- 1. Install Python (If Not Installed) To use this script, you need Python installed on your macOS system. Steps to Install Python: 1. Open Terminal and check if Python is installed: python3 --version 2. If Python is not installed, download and install the latest version from: https://www.python.org/downloads/mac-osx/ 3. After installation, verify again: python3 --version --- 2. Install Required Packages Open Terminal and enter the following commands: pip3 install yt-dlp pip3 install flask brew install ffmpeg # If Homebrew is installed > Note: If Homebrew is not installed, install it using: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" --- 3. Create a Directory for the Project 1. Open Terminal and navigate to your preferred directory, e.g.: cd ~/Desktop 2. Create a new folder: mkdir downloader 3. Navigate to the folder: cd downloader 4. Create a subfolder for templates: mkdir templates --- 4. ...