{"id":48679111,"url":"https://github.com/undergroundrap/yt-wav-converter","last_synced_at":"2026-04-10T22:01:59.077Z","repository":{"id":310163846,"uuid":"1038932299","full_name":"undergroundrap/yt-wav-converter","owner":"undergroundrap","description":"YouTube → WAV Download | Fast • Free • Private • Simple • Best Possible Quality • WAV (48kHz, stereo, 16-bit PCM, 320kbps)","archived":false,"fork":false,"pushed_at":"2025-10-16T18:05:37.000Z","size":10557,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-17T20:52:58.966Z","etag":null,"topics":["16bit-pcm","320kbps","320kbps-hd-songs","48khz","converter","downloader","fast","flask","free","html","open-source","private","python","safe","simple","wav"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/undergroundrap.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":"2025-08-16T05:36:37.000Z","updated_at":"2025-10-16T18:05:41.000Z","dependencies_parsed_at":"2025-10-17T12:12:55.861Z","dependency_job_id":"f1f7099d-2d05-4b2d-a811-acf1191e123c","html_url":"https://github.com/undergroundrap/yt-wav-converter","commit_stats":null,"previous_names":["undergroundrap/yt-wav-converter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/undergroundrap/yt-wav-converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/undergroundrap%2Fyt-wav-converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/undergroundrap%2Fyt-wav-converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/undergroundrap%2Fyt-wav-converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/undergroundrap%2Fyt-wav-converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/undergroundrap","download_url":"https://codeload.github.com/undergroundrap/yt-wav-converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/undergroundrap%2Fyt-wav-converter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31660628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"ssl_error","status_checked_at":"2026-04-10T17:19:13.364Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["16bit-pcm","320kbps","320kbps-hd-songs","48khz","converter","downloader","fast","flask","free","html","open-source","private","python","safe","simple","wav"],"created_at":"2026-04-10T22:01:58.251Z","updated_at":"2026-04-10T22:01:59.066Z","avatar_url":"https://github.com/undergroundrap.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YouTube to WAV Converter\n\nA simple and fast web application to download YouTube videos as high-quality WAV audio files. The application runs locally on your machine, ensuring your data stays private.\n\n![Screenshot](screenshot.png)\n\n## ✨ Features\n\n- 🚀 Lightning-fast YouTube audio extraction\n- 🎵 Converts to high-quality WAV format\n- 🔒 Runs locally - your data never leaves your computer\n- 🌙 Dark mode interface\n- 📱 Responsive design works on all devices\n- ⚡ No database required\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Python 3.8 or higher\n- FFmpeg (required for audio conversion)\n\n### Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/undergroundrap/yt-wav-converter.git\n   cd yt-wav-converter\n   ```\n\n2. **Set up a virtual environment (recommended)**\n   ```bash\n   # Windows\n   python -m venv venv\n   .\\venv\\Scripts\\activate\n\n   # macOS/Linux\n   python3 -m venv venv\n   source venv/bin/activate\n   ```\n\n3. **Install dependencies**\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Install FFmpeg**\n   - **Windows**: Download from [FFmpeg's official site](https://ffmpeg.org/download.html) and add to PATH\n   - **macOS**: `brew install ffmpeg`\n   - **Linux**: `sudo apt install ffmpeg` (Debian/Ubuntu) or `sudo dnf install ffmpeg` (Fedora)\n\n### Running the Application\n\n1. **Set the Flask app environment variable**\n   ```bash\n   # Windows\n   set FLASK_APP=app.py\n   set FLASK_ENV=development\n\n   # macOS/Linux\n   export FLASK_APP=app.py\n   export FLASK_ENV=development\n   ```\n\n2. **Start the application**\n   ```bash\n   flask run\n   ```\n\n3. **Open your browser** to http://localhost:5000\n\n## 🛠️ Project Structure\n\n```\nyoutube_wav_converter/\n├── app.py                  # Main Flask application\n├── requirements.txt        # Python dependencies\n├── README.md              # Project documentation\n├── LICENSE                # MIT License\n├── screenshot.png         # Application screenshot\n├── .gitignore            # Git ignore file\n├── templates/             # HTML templates\n│   └── index.html        # Main web interface\n└── temp_audio/           # Temporary storage for audio files (created on first run)\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## Notes\n\n- The application creates a `temp_audio` directory to store temporary files during conversion.\n- Logs are stored in the `logs` directory.\n- For production use, ensure proper security measures are in place.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fundergroundrap%2Fyt-wav-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fundergroundrap%2Fyt-wav-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fundergroundrap%2Fyt-wav-converter/lists"}