{"id":26164660,"url":"https://github.com/hoishing/yt-transcribe","last_synced_at":"2026-02-18T10:36:26.726Z","repository":{"id":280398075,"uuid":"941887420","full_name":"hoishing/yt-transcribe","owner":"hoishing","description":"Youtube Transcript Extract and Transcribe","archived":false,"fork":false,"pushed_at":"2025-03-08T14:25:50.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-26T17:34:46.002Z","etag":null,"topics":["groq","transcriber","youtube"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/yt-transcribe","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/hoishing.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,"zenodo":null}},"created_at":"2025-03-03T08:12:25.000Z","updated_at":"2025-06-10T11:47:11.000Z","dependencies_parsed_at":"2025-03-09T12:15:24.526Z","dependency_job_id":null,"html_url":"https://github.com/hoishing/yt-transcribe","commit_stats":null,"previous_names":["hoishing/yt-transcribe"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hoishing/yt-transcribe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoishing%2Fyt-transcribe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoishing%2Fyt-transcribe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoishing%2Fyt-transcribe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoishing%2Fyt-transcribe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hoishing","download_url":"https://codeload.github.com/hoishing/yt-transcribe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoishing%2Fyt-transcribe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29576634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"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":["groq","transcriber","youtube"],"created_at":"2025-03-11T15:37:56.568Z","updated_at":"2026-02-18T10:36:21.718Z","avatar_url":"https://github.com/hoishing.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Youtube Transcript Extract and Transcribe\n\nThis package provides a simple way to extract and transcribe Youtube videos.\n\n- If transcript is available, you can use `Extractor` to get the transcript.\n- If no transcript is disabled, you can use `Transcriber` to transcribe the video with Whisper from Groq.\n\n## Installation\n\n```bash\npip install yt-transcribe\n```\n\nPut your `GROQ_API_KEY` in `.env`\n\n## Usage\n\n```python\nfrom yt_transcribe import Extractor, Transcriber, list_available_languages\n\n# list available transcript languages for a video\nlist_available_languages(\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\") # [\"en\"]\n\n# raise `TranscriptsDisabled` for a video disabled transcript\nlist_available_languages(\"https://youtube.com/shorts/NbY29sW7gbU?si=EJpsZdXvUArCIBr3\") # raise\n\n# video with transcript\nextractor = Extractor(url=\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\", lang=\"en\")\nprint(extractor.formatted_transcript(format=\"srt\"))  # format: srt, txt, webvtt\n\n# video without transcript, use whisper to transcribe\ntranscriber = Transcriber(url=\"https://youtube.com/shorts/NbY29sW7gbU?si=EJpsZdXvUArCIBr3\")\nprint(transcriber.transcript)\n\n# video without transcript, specify language to enhance accuracy\ntranscriber = Transcriber(url=\"https://youtube.com/shorts/NbY29sW7gbU?si=EJpsZdXvUArCIBr3\", lang=\"zh\")\nprint(transcriber.transcript)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoishing%2Fyt-transcribe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhoishing%2Fyt-transcribe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoishing%2Fyt-transcribe/lists"}