pytube-tool
is a Python-based command-line utility for downloading YouTube videos. By simply providing a YouTube video URL, users can select their preferred format and download the video efficiently.
Features | Installation | Install from PyPI | Build from Source | Usage | Example Usage | Development
- Command-Line Interface (CLI): Download YouTube videos using simple terminal commands.
- Format Selection: Choose from available video and audio formats before downloading.
- High-Quality Video: Supports downloading videos in resolutions such as 720p, 1080p, and higher, if available.
- Audio-Only Downloads: Extract and download the audio portion of a video.
- Batch Downloading: Download multiple videos using a list of URLs from a file.
- Fast and Efficient: Optimized to download videos quickly while maintaining quality.
To install pytube-tool
directly from PyPI:
pip install pytube-tool
For those who prefer to build it themselves, follow these steps:
-
Clone the repository and navigate to the project directory:
git clone https://github.com/h471x/youtube_downloader.git cd youtube_downloader
-
Create a Virtual Environment (to avoid dependency conflicts):
- On Linux
python -m venv pytube_env source pytube_env/bin/activate
- On Windows
python -m venv pytube_env source pytube_env\Scripts\activate
-
Install required packages:
pip install -r requirements.txt
-
Build the package:
python setup.py sdist bdist_wheel
-
Install the package:
pip install dist/*.whl
Once the package is installed, you can use the pytube
command from the terminal. The script accepts the following command-line arguments:
-
Download Video:
- Provide the URL of the YouTube video you wish to download.
-
Format Selection:
- During the download process, the tool will list available formats (video resolutions and audio-only) and prompt you to select one.
-
Batch Processing:
- Use a file containing a list of YouTube video URLs to download multiple videos at once.
-
Help Option:
-h
or--help
: Display the help message with all available options.
-
Download a Single Video:
pytube --url https://www.youtube.com/watch?v=dQw4w9WgXcQ
The tool will list available formats, allowing you to select your preferred option.
-
Batch Download:
pytube -b urls.txt
urls.txt
should contain one YouTube URL per line. -
Help Option: For help with command-line options, use:
pytube -h
To modify or extend the functionality, ensure you have the required dependencies installed. You can add new features or optimize existing ones as needed.
- Support for Playlists: Extend the tool to handle full playlist downloads.
- Download Progress Indicator: Implement a visual progress bar for downloads.
- Improved Format Filtering: Enhance format selection to include additional criteria like frame rate or bit rate.
Feel free to fork this repository, open issues, or submit pull requests with improvements or bug fixes. Your contributions help make the pytube-tool
better!