A GUI YouTube downloader powered by yt-dlp
Project description
๐ฌ YTGet โ Cross-Platform YouTube Downloader
YTGet GUI is a modern, lightweight, and user-friendly desktop application built with Python and PySide6.
Powered by yt-dlp, it makes downloading YouTube videos, playlists, and music simple and efficient.
- ๐ฅ๏ธ Cross-Platform: Runs seamlessly on Windows, macOS, and Linux.
- ๐ฆ Standalone: Each release comes with all dependencies bundled, so it works right out of the box.
- โก Optimized & Stable: Designed for smooth performance with smart resource handling, and built-in update management.
- ๐ต Versatile: Supports full videos, playlists, and music downloads in multiple formats.
Whether youโre grabbing a single clip or archiving an entire channel, YTGet delivers a polished and seamless experience on every operating system.
๐ Repository Stats
๐ Community
๐ Issues & ๐ Pull Requests
๐ฅ Downloads
๐ป Codebase
โฑ๏ธ Activity
โ๏ธ How to Install
๐ช Windows
- Download the latest
YTGet-Windows.ziprelease. - Extract the contents.
- Run
YTGet.exe.
๐ง Linux
- Install required dependencies:
sudo apt-get update && sudo apt-get install -y libxcb-cursor0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 libxcb-shape0 libxcb-render-util0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxcb-xkb1
- Download the latest
YTGet-Linux.tar.gzrelease. - Extract the contents.
tar -xzf YTGet-Linux.tar.gz
- Make it executable and launch:
chmod +x YTGet
./YTGet
๐ macOS
- Download the latest release:
- Open Terminal and run:
cd Downloads
- Extract the contents.
tar -xzf YTGet-macOS-arm64.tar
or
tar -xzf YTGet-macOS-x86_64.tar
This will produce a YTGet.app bundle in your current directory.
- Remove Quarantine Flag If you see โcannot be opened because Apple cannot check it for malicious software,โ you need to strip the quarantine attribute:
xattr -d com.apple.quarantine YTGet.app
This lets macOS trust your app without popping security dialogs every launch.
- Set Executable Permission
chmod +x YTGet.app/Contents/MacOS/YTGet
- Move to Applications (Optional)
For a cleaner setup, drag YTGet.app into your /Applications folder or run:
mv YTGet.app /Applications/
- Launch YTGet
Choose one:
- From Finder: double-click /Applications/YTGet
- From Terminal:
open /Applications/YTGet.app
- Download yt-dlp via Menu Bar โ Help โ Check yt-dlp Update.
๐ PyPI Installation
YTGet GUI depends on FFmpeg to process and convert media. Follow these steps to get everything up and running:
1๏ธโฃ Install YTGet GUI
pip install ytget-gui
2๏ธโฃ Set Up FFmpeg
Choose one of the two methods below:
2.1 Add FFmpeg to Your PATH (Recommended)
-
Download the latest FFmpeg build for your platform from this Link.
-
Extract the archive.
-
Add the bin/ directory to your system PATH:
On Windows: update Environment Variables โ Path.
On macOS/Linux: edit ~/.bashrc or ~/.zshrc with
export PATH="/path/to/ffmpeg/bin:$PATH" -
Verify installation:
ffmpeg -version
2.2 Copy Binaries into the YTGet Folder (Alternative)
-
Download the static FFmpeg binaries for your OS.
-
Copy ffmpeg (or ffmpeg.exe) and ffprobe (or ffprobe.exe) into the same directory where the ytget-gui executable lives.
๐ How to Update (PyPI version)
To upgrade your PyPI installation to the latest release:
pip install --upgrade ytget-gui
This command fetches and installs the newest version, replacing your current one automatically.
โจ Extra Tips You Might Find Useful
- On macOS, you can also use Homebrew:
brew install ffmpeg
- On Debian/Ubuntu:
sudo apt update && sudo apt install ffmpeg
โจ Features
๐ฅ๏ธ Interface
- ๐ฏ Clean Qt GUI โ Intuitive layout with dark-friendly visuals.
- ๐ Cancel Anytime โ Gracefully stop downloads at any moment.
- ๐ Offline Capable โ No Python installation required.
๐ฅ Download Options
- ๐น Multiple Formats โ Download videos from 480p up to 8K.
- ๐ต MP3 Mode โ High-quality audio extraction with embedded thumbnails & metadata.
- ๐ Subtitles โ Auto-fetch subtitles (multi-language).
- ๐ Playlist Support โ Download entire playlists in audio/video mode.
๐ง Advanced Features
- โ๏ธ Persistent Settings โ All settings saved to
config.json. - ๐ Improved Playlist Support โ Reverse order, select items, archive tracking.
- โ๏ธ Clip Extraction โ Download video portions by start/end time.
- โญ๏ธ SponsorBlock โ Skip sponsored content, intros, and outros.
- ๐งฉ Chapters Handling โ Embed or split videos by chapters.
- ๐ผ YouTube Music Metadata โ Accurate music info and album data.
๐ Functionality
- ๐ Proxy Support โ Configure proxies for downloads.
- ๐ Date Filter โ Download videos uploaded after a specified date.
- ๐งช Custom FFmpeg Args โ Add advanced arguments for power users.
- ๐ Audio Normalization โ Uniform volume for all downloads.
- ๐ Channel Organization โ Auto-sort videos into uploader folders.
- โก Performance Enhancements โ Smart rate limiting and retry logic.
๐ผ Screenshots
๐งฐ How to Use
- โถ๏ธ Launch
YTGet. - ๐ Paste a YouTube URL.
- ๐๏ธ Select format (e.g., 1080p MKV or MP3).
- โฌ๏ธ Click โ Add to Queue.
- โฌ๏ธ Click โถ๏ธ Start Queue.
๐ Output
- โ
Clean filenames:
%(title)s.ext - ๐ต Audio downloads include:
- Embedded album art
- Metadata tags (artist, title, etc.)
๐งฉ Format Options
| Format | Description |
|---|---|
| ๐๏ธ 480pโ8K | MKV, MP4, WebM video with merged best audio |
| ๐ต FLAC Audio | High-quality audio with tags & thumbnails |
| ๐ต MP3 Audio | High-quality audio with tags & thumbnails |
| ๐ Playlist MP3 | Batch audio extraction from playlists |
๐ Cookies Support
For age-restricted or private content:
- Export cookies using Get cookies.txt extension.
- Place the file in
_internal/cookies.txt.
โ๏ธ Requirements
- โ No installation โ just unzip and run.
- ๐ช Windows 10+ (64-bit).
๐ง Development Setup
Prerequisites
- Python 3.13+
- FFmpeg (Add to PATH or project folder)
Setup
# Clone the repo
git clone https://github.com/ErfanNamira/ytget-gui.git
# Navigate to project
cd ytget-gui
# Create & activate virtual environment
python -m venv venv
# Linux/Mac
source venv/bin/activate
# Windows
venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run app
python -m ytget_gui
๐ค Contribution Guide
-
Fork & clone the repo
-
Create a feature branch: git checkout -b my-feature
-
Commit & push: git commit -m "msg" && git push origin my-feature
-
Open a Pull Request
๐ License
This project is licensed under the MIT License. See the LICENSE file for full details.
๐ฆ Download
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ytget_gui-2.4.8.0.tar.gz.
File metadata
- Download URL: ytget_gui-2.4.8.0.tar.gz
- Upload date:
- Size: 232.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f680210affe731ce29aec51d26841fecde4a1a0521982c5476ab2cced9bf122
|
|
| MD5 |
95794c2d2fc6a2930aa4f7e53ce8bc2c
|
|
| BLAKE2b-256 |
4ddffc70e953b57302a27ac7d1d5b2ec1b583e5ccad43fc681b9b1e7ef32cfbf
|
File details
Details for the file ytget_gui-2.4.8.0-py3-none-any.whl.
File metadata
- Download URL: ytget_gui-2.4.8.0-py3-none-any.whl
- Upload date:
- Size: 234.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8b24c11a5f27224cbcdb001b58b3145c2fc14f79997c2f8b51840af3740c20a
|
|
| MD5 |
30f286f8732fbafbf87cd9712bd0a0cb
|
|
| BLAKE2b-256 |
3e74d967ec59043b5854d14029bc49c6c549f2134552fca15775738da2d01291
|