{"id":14985006,"url":"https://github.com/ignabelitzky/easy-subber","last_synced_at":"2026-03-05T18:38:31.756Z","repository":{"id":255667834,"uuid":"853086783","full_name":"ignabelitzky/easy-subber","owner":"ignabelitzky","description":"A Python-based tool that that takes video files and generates .srt subtitle files using Whisper for speech recognition, FFmpeg for audio processing, and a simple Tkinter GUI","archived":false,"fork":false,"pushed_at":"2024-09-06T19:07:43.000Z","size":23,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T23:15:28.599Z","etag":null,"topics":["ffmpeg","gui","python","speech-recognition","srt","subtitles","tkinter","transcription","video-processing","whisper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ignabelitzky.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["ignabelitzky"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-09-06T01:00:27.000Z","updated_at":"2025-03-30T04:39:31.000Z","dependencies_parsed_at":"2024-09-06T16:49:19.458Z","dependency_job_id":"14f20e48-cd73-406e-abb5-231cb3a7d30f","html_url":"https://github.com/ignabelitzky/easy-subber","commit_stats":{"total_commits":6,"total_committers":1,"mean_commits":6.0,"dds":0.0,"last_synced_commit":"41c5c6994dac72d4883be0645dffaa5a48ebfef3"},"previous_names":["ignabelitzky/easy-subber"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ignabelitzky/easy-subber","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignabelitzky%2Feasy-subber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignabelitzky%2Feasy-subber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignabelitzky%2Feasy-subber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignabelitzky%2Feasy-subber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ignabelitzky","download_url":"https://codeload.github.com/ignabelitzky/easy-subber/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ignabelitzky%2Feasy-subber/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30143189,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T16:58:46.102Z","status":"ssl_error","status_checked_at":"2026-03-05T16:58:45.706Z","response_time":93,"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":["ffmpeg","gui","python","speech-recognition","srt","subtitles","tkinter","transcription","video-processing","whisper"],"created_at":"2024-09-24T14:10:05.350Z","updated_at":"2026-03-05T18:38:31.705Z","avatar_url":"https://github.com/ignabelitzky.png","language":"Python","funding_links":["https://github.com/sponsors/ignabelitzky"],"categories":[],"sub_categories":[],"readme":"# EasySubber\n\nEasySubber is a Python-based tool that allows you to generate `.srt` subtitle files from video files in various formats (e.g., `.mkv`, `.mp4`, `.avi`). It utilizes OpenAI's Whisper model for speech-to-text transcription, FFmpeg for audio extraction, and Tkinter for a simple graphical user interface (GUI).\n\n## Features\n\n- Supports a variety of video formats: `.mkv`, `.mp4`, `.avi`, etc.\n- Automatically creates subtitles in the `.srt` format.\n- Whisper model provides high quality speech recognition.\n- GUI interface built with Tkinter for ease of use.\n- Uses FFmpeg to efficiently extract audio from video files.\n\n## Requirements\n\nBefore using EasySubber, make sure you have the following installed:\n\n- **Python 3.x**\n- [Whisper](https://github.com/openai/whisper)\n- **FFmpeg**\n- **Tkinter** (tipically included with Python)\n\nInstall the required Python packages:\n\n```bash\npip install whisper ffmpeg-python tkinter\n```\n\nTo install FFmpeg:\n- **Windows**: [FFmpeg Windows Installation Guide](https://ffmpeg.org/download.html#build-windows)\n- **Linux**: `sudo apt install ffmpeg`\n- **macOS**: `brew install ffmpeg`\n\n## Usage\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/ignabelitzky/easy-subber.git\ncd easy-subber\n```\n2. Run the program:\n```\npython main.py\n```\n3. Select the video file you want to process.\n4. EasySubber will generate an `.srt` subtitle file in the same directory as the video.\n\n## How It Works\n\n1. **File Selection**: Use the Tkinter GUI to select a video file.\n2. **Audio Extraction**: FFmpeg extracts the audio track from the video.\n3. **Transcription**: Whisper transcribes the audio into text.\n4. **Subtitle Creation**: The transcription is formatted into `.srt` subtitles with proper timestamps.\n\n## Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests to improve EasySubber.\n\n## License\n\nThis project is licensed under the [GNU General Public License v3.0](LICENSE). You can find the full text of the license here [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fignabelitzky%2Feasy-subber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fignabelitzky%2Feasy-subber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fignabelitzky%2Feasy-subber/lists"}