{"id":26354449,"url":"https://github.com/architj6/youtube-llm-summarizer","last_synced_at":"2026-04-11T11:03:59.953Z","repository":{"id":282575824,"uuid":"948538818","full_name":"ArchitJ6/youtube-llm-summarizer","owner":"ArchitJ6","description":"AI-powered YouTube video summarizer built with Streamlit. This project extracts transcripts from YouTube using YouTubeTranscriptAPI or Whisper, then summarizes them using Groq's LLM. Dockerized for seamless deployment.","archived":false,"fork":false,"pushed_at":"2025-03-15T14:50:18.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-15T15:25:31.138Z","etag":null,"topics":["ai-summarization","ai-summarizer","docker","ffmpeg","groq-api","llm","python","speech-to-text","streamlit","video-summarization","whisper","youtube","youtube-api","youtube-transcript-api"],"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/ArchitJ6.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}},"created_at":"2025-03-14T14:11:48.000Z","updated_at":"2025-03-15T15:08:51.000Z","dependencies_parsed_at":"2025-03-15T15:35:47.548Z","dependency_job_id":null,"html_url":"https://github.com/ArchitJ6/youtube-llm-summarizer","commit_stats":null,"previous_names":["architj6/youtube-llm-summarizer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchitJ6%2Fyoutube-llm-summarizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchitJ6%2Fyoutube-llm-summarizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchitJ6%2Fyoutube-llm-summarizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchitJ6%2Fyoutube-llm-summarizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArchitJ6","download_url":"https://codeload.github.com/ArchitJ6/youtube-llm-summarizer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243864824,"owners_count":20360360,"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":["ai-summarization","ai-summarizer","docker","ffmpeg","groq-api","llm","python","speech-to-text","streamlit","video-summarization","whisper","youtube","youtube-api","youtube-transcript-api"],"created_at":"2025-03-16T12:17:35.088Z","updated_at":"2026-04-11T11:03:59.916Z","avatar_url":"https://github.com/ArchitJ6.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📺 YouTube LLM Summarizer  \n\n### 🚀 AI-powered YouTube Video Summarization with Streamlit  \n\nThis project extracts transcripts from YouTube videos using **YouTubeTranscriptAPI** or **Whisper**, then summarizes them using **Groq's LLM**. The app is built with **Streamlit** and runs in a **Dockerized environment** for easy deployment.  \n\n---\n\n## 🚀 Features  \n✅ Extracts YouTube transcripts automatically  \n✅ Uses **Whisper** for speech-to-text if transcripts are unavailable  \n✅ Summarizes content using **Groq LLM**  \n✅ Provides a simple **Streamlit UI** for easy interaction  \n✅ **Dockerized** for seamless deployment  \n\n---\n\n## 📂 Project Structure  \n\n```\n📁 youtube-llm-summarizer  \n│── 📄 app.py               # Streamlit UI for summarization  \n│── 📄 summarizer.py        # Core logic for transcript extraction \u0026 summarization  \n│── 📄 Dockerfile           # Docker configuration  \n│── 📄 docker-compose.yml   # Docker Compose setup  \n│── 📄 .env                 # Environment variables  \n│── 📄 requirements.txt     # Python dependencies  \n│── 📁 temp/                # Temporary storage for audio files\n```\n\n---\n\n## 🛠️ Installation \u0026 Setup  \n\n### 1️⃣ **Clone the Repository**  \n```sh\ngit clone https://github.com/ArchitJ6/youtube-llm-summarizer.git\ncd youtube-llm-summarizer\n```\n\n### 2️⃣ **Set Up Environment Variables**  \nCreate a `.env` file in the root directory and add your API keys:  \n```\nGROQ_API_KEY=your_groq_api_key\n```\n\n### 3️⃣ **Run with Docker Compose**  \n```sh\ndocker-compose up --build\n```\nThis will:\n- Pull the necessary dependencies  \n- Set up the Streamlit app in a container  \n- Run the app on **http://localhost:8501**  \n\n---\n\n## 🎬 How to Use  \n1. Open **http://localhost:8501**  \n2. Enter a **YouTube video URL**  \n3. Click **\"Summarize\"**  \n4. View the **generated summary**  \n\n---\n\n## 📦 Running Without Docker  \nIf you prefer to run locally:  \n```sh\npip install -r requirements.txt\nstreamlit run app.py\n```\n\n---\n\n## 🛠️ Built With  \n- **Python** 🐍  \n- **Streamlit** 📊  \n- **YouTubeTranscriptAPI** 🎥  \n- **Whisper** 🎙️  \n- **Groq LLM** 🧠  \n- **Docker \u0026 Docker Compose** 🐳  \n\n---\n\n## 📝 License  \nThis project is licensed under the [MIT License](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchitj6%2Fyoutube-llm-summarizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchitj6%2Fyoutube-llm-summarizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchitj6%2Fyoutube-llm-summarizer/lists"}