{"id":50789761,"url":"https://github.com/rgeditv1/yt-dlp-linux-gui","last_synced_at":"2026-06-12T10:02:55.957Z","repository":{"id":338866387,"uuid":"1158938541","full_name":"RgeditV1/yt-dlp-linux-gui","owner":"RgeditV1","description":"yt-dlp con frontend escrito en python usando CustomTkinter","archived":false,"fork":false,"pushed_at":"2026-03-09T22:00:16.000Z","size":994,"stargazers_count":2,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-10T04:24:18.770Z","etag":null,"topics":["gui","linux","youtube-downloader","yt-dlp","yt-downloader"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RgeditV1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-16T05:25:37.000Z","updated_at":"2026-03-02T21:09:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/RgeditV1/yt-dlp-linux-gui","commit_stats":null,"previous_names":["rgeditv1/yt-dlp-linux-gui"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/RgeditV1/yt-dlp-linux-gui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RgeditV1%2Fyt-dlp-linux-gui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RgeditV1%2Fyt-dlp-linux-gui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RgeditV1%2Fyt-dlp-linux-gui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RgeditV1%2Fyt-dlp-linux-gui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RgeditV1","download_url":"https://codeload.github.com/RgeditV1/yt-dlp-linux-gui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RgeditV1%2Fyt-dlp-linux-gui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34238715,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gui","linux","youtube-downloader","yt-dlp","yt-downloader"],"created_at":"2026-06-12T10:02:55.095Z","updated_at":"2026-06-12T10:02:55.945Z","avatar_url":"https://github.com/RgeditV1.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YTDLP UI Edition\n\nA modern graphical interface for downloading YouTube videos and audio using **yt-dlp** and **CustomTkinter**.\n\nBuilt in Python with a modular architecture and currently in a **stable phase**.\n\n## Now You Can Download From AUR\n```bash\nyay -S yt-dlp-linux-gui\n```\n\n---\n\n## 📌 Project Status\n\n**Stable**\n\nThe application currently:\n\n- Downloads videos in **MP4** format  \n- Downloads audio in **MP3** format  \n- Allows custom download directory selection  \n- Sends system notifications  \n- Handles resource paths correctly in development  \n\n---\n\n##  Project Structure\n```bash\nytdlp_gui/\n│\n├── core/\n│   └── downloader.py\n│\n├── gui/\n│   ├── ui.py\n│   └── utils.py\n│\n├── img/\n├── fonts/\n│\n└── YTDLP.py\n```\n- **core/** → Download logic (yt-dlp integration)  \n- **gui/** → Graphical interface and utilities  \n- **img / fonts/** → Static resources used by the UI  \n\n---\n\n## Installation (Recommended)\n\nInstead of installing dependencies manually, simply run:\n```bash\nchmod +x setup.sh  \n./setup.sh  \n```\nThe setup script will automatically install all required dependencies and prepare the project.\n\n### Windows\n\nPowerShell:\n```powershell\n.\\setup.ps1\n```\nIf PowerShell blocks scripts:\n```powershell\npowershell -ExecutionPolicy Bypass -File .\\setup.ps1\n```\n\nCMD:\n```bat\nsetup.cmd\n```\n\n---\n\n## ▶Running the Application\n\nAfter running the setup script:\n```bash\npython ytdlp_gui/YTDLP.py  \n```\n---\n\n## Features\n\n- Modern dark-mode UI (CustomTkinter)  \n- MP3 extraction using FFmpeg  \n- Automatic download directory creation  \n- Input validation before download  \n- System notifications for download status  \n- Clean separation between UI and core logic  \n\n---\n\n## How It Works\n\n- The `Downloader` class dynamically configures yt-dlp options.\n- Audio mode uses FFmpeg post-processing.\n- The UI validates fields before starting downloads.\n- A smart `resource_path()` function ensures proper asset loading.\n\n---\n\n## Main Dependencies\n\n- yt-dlp  \n- customtkinter  \n- pillow  \n- plyer  \n\n(All installed automatically via `setup.sh`.)\n\n---\n\n##  Future Improvements\n\n- Real-time download progress bar  \n- Playlist support  \n- Persistent configuration  \n- Additional format options  \n\n---\n\n## 👤 Author\n\nDeveloped by **RgeditV1**\nand **RowanDavitt**\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frgeditv1%2Fyt-dlp-linux-gui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frgeditv1%2Fyt-dlp-linux-gui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frgeditv1%2Fyt-dlp-linux-gui/lists"}