{"id":25842103,"url":"https://github.com/mrmendoza-dev/youtube-transcript-python","last_synced_at":"2026-06-06T22:31:01.150Z","repository":{"id":250368769,"uuid":"834268255","full_name":"mrmendoza-dev/youtube-transcript-python","owner":"mrmendoza-dev","description":"Simple program to create and download YouTube video transcripts using YouTubeTranscriptApi.","archived":false,"fork":false,"pushed_at":"2024-07-26T20:12:38.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-07-26T21:56:23.073Z","etag":null,"topics":["python","tkinter","youtubetranscriptapi"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrmendoza-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-07-26T20:00:55.000Z","updated_at":"2024-07-26T21:56:33.233Z","dependencies_parsed_at":"2024-07-26T22:10:28.983Z","dependency_job_id":null,"html_url":"https://github.com/mrmendoza-dev/youtube-transcript-python","commit_stats":null,"previous_names":["mrmendoza-dev/youtube-transcript-python"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmendoza-dev%2Fyoutube-transcript-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmendoza-dev%2Fyoutube-transcript-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmendoza-dev%2Fyoutube-transcript-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmendoza-dev%2Fyoutube-transcript-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrmendoza-dev","download_url":"https://codeload.github.com/mrmendoza-dev/youtube-transcript-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241322560,"owners_count":19944073,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["python","tkinter","youtubetranscriptapi"],"created_at":"2025-03-01T05:34:14.561Z","updated_at":"2026-06-06T22:31:01.145Z","avatar_url":"https://github.com/mrmendoza-dev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YouTube Transcript Generator\n\nA simple GUI application to generate and download YouTube video transcripts with a modern dark interface.\n\n## Features\n\n- Simple PySide6-based GUI interface\n- Generate transcripts with or without timestamps\n- Works with various YouTube URL formats (videos, shorts, etc.)\n- Save transcripts as text files\n- Modern dark mode interface\n\n## Prerequisites\n\n- Python 3.7+ installed on your system\n- Terminal/Command Prompt access\n\n## Quick Start\n\n### 1. Clone or Download\n\n```bash\ngit clone \u003cyour-repo-url\u003e\ncd youtube-transcript-python\n```\n\n### 2. Activate Virtual Environment\n\n```bash\n# On Windows:\nvenv\\Scripts\\activate\n\n# On macOS/Linux:\nsource venv/bin/activate\n```\n\n### 3. Install Dependencies\n\n```bash\npip install -r requirements.txt\n```\n\n### 4. Run the Application\n\n```bash\npython youtube_transcript.py\n```\n\n## Alternative Installation Methods\n\n### Manual dependency installation (if requirements.txt doesn't work)\n\n```bash\npip install PySide6\npip install youtube-transcript-api\n```\n\n## Environment Setup (Required First Step)\n\nVirtual environments keep your project dependencies isolated from your system Python. This prevents conflicts between different projects.\n\n### Option 1: Automated Setup (Easiest)\n\n**On Linux/macOS:**\n\n```bash\nchmod +x setup_env.sh\n./setup_env.sh\n```\n\n**On Windows:**\n\n```cmd\nsetup_env.bat\n```\n\n### Option 2: Manual Setup\n\n```bash\n# Create virtual environment\npython -m venv venv\n\n# Activate virtual environment (REQUIRED before installing packages)\n# On Windows:\nvenv\\Scripts\\activate\n# On macOS/Linux:\nsource venv/bin/activate\n\n# Install dependencies\npip install -r requirements.txt\n\n# Run the app\npython youtube_transcript.py\n```\n\n### Why Use Virtual Environments?\n\n- **Isolation**: Each project has its own packages\n- **Clean system**: No conflicts with system Python\n- **Reproducibility**: Easy to recreate the exact environment\n- **Dependency management**: Clear what packages your project needs\n\n## Usage\n\n1. **Launch the application** - A dark-themed GUI window will appear\n2. **Enter YouTube URL** - Paste any YouTube video URL in the URL field\n3. **Optional title** - Add a custom title for your transcript file\n4. **Fetch transcript** - Click \"Fetch Transcript\" to retrieve the transcript\n5. **Download options**:\n   - **Download Simple** - Plain text transcript\n   - **Download Full** - Transcript with timestamps\n\n## Supported URL Formats\n\n- `https://www.youtube.com/watch?v=VIDEO_ID`\n- `https://youtu.be/VIDEO_ID`\n- `https://www.youtube.com/shorts/VIDEO_ID`\n- `https://www.youtube.com/embed/VIDEO_ID`\n\n## Troubleshooting\n\n### Common Issues\n\n**\"Module not found\" errors:**\n\n- Ensure all dependencies are installed: `pip install -r requirements.txt`\n\n**GUI not displaying:**\n\n- Check if PySide6 is properly installed\n- Verify Python version compatibility (3.7+)\n\n**Transcript fetch failures:**\n\n- Ensure the YouTube video has available transcripts\n- Check your internet connection\n- Verify the URL format is correct\n\n### System Requirements\n\n- **OS**: Windows, macOS, or Linux\n- **Python**: 3.7 or higher\n- **Memory**: Minimum 100MB RAM\n- **Display**: 500x400 minimum resolution\n\n## Development\n\nTo contribute or modify:\n\n1. Install development dependencies\n2. Make your changes\n3. Test with various YouTube URLs\n4. Ensure the GUI remains responsive\n\n## License\n\n[Add your license information here]\n\n---\n\n**Note**: This application uses the YouTube Transcript API and is subject to YouTube's terms of service. Ensure you have permission to download transcripts for the content you're accessing.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmendoza-dev%2Fyoutube-transcript-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmendoza-dev%2Fyoutube-transcript-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmendoza-dev%2Fyoutube-transcript-python/lists"}