{"id":15063194,"url":"https://github.com/akdevv/yt-sum","last_synced_at":"2026-02-11T08:12:17.205Z","repository":{"id":256041188,"uuid":"854092589","full_name":"akdevv/yt-sum","owner":"akdevv","description":"A powerful tool that leverages Google Gemini AI to provide concise summaries of YouTube videos.","archived":false,"fork":false,"pushed_at":"2024-09-14T11:29:34.000Z","size":9786,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-05T18:02:03.633Z","etag":null,"topics":["framer-motion","gemini-api","reactjs","summarizer-ai"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/akdevv.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":"2024-09-08T11:51:40.000Z","updated_at":"2024-09-14T13:56:50.000Z","dependencies_parsed_at":"2024-11-21T12:57:52.465Z","dependency_job_id":null,"html_url":"https://github.com/akdevv/yt-sum","commit_stats":{"total_commits":22,"total_committers":2,"mean_commits":11.0,"dds":"0.045454545454545414","last_synced_commit":"46978ae1a4c591adb7a2e0debb868f4a67fd6ef0"},"previous_names":["akdevv/yt-sum"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akdevv/yt-sum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akdevv%2Fyt-sum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akdevv%2Fyt-sum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akdevv%2Fyt-sum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akdevv%2Fyt-sum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akdevv","download_url":"https://codeload.github.com/akdevv/yt-sum/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akdevv%2Fyt-sum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29329737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T06:13:03.264Z","status":"ssl_error","status_checked_at":"2026-02-11T06:12:55.843Z","response_time":97,"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":["framer-motion","gemini-api","reactjs","summarizer-ai"],"created_at":"2024-09-24T23:53:12.445Z","updated_at":"2026-02-11T08:12:17.185Z","avatar_url":"https://github.com/akdevv.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# yt-sum\n\nA powerful tool that leverages Google Gemini AI to provide concise summaries of YouTube videos. Simply enter the URL of any YouTube video, and get an AI-generated summary in seconds!\n\n## Table of Contents\n\n-   [Features](#features)\n-   [Screenshots](#screenshots)\n-   [Folder Structure](#folder-structure)\n-   [Getting Started](#getting-started)\n    -   [Prerequisites](#prerequisites)\n    -   [Installation](#installation)\n-   [Google Gemini AI Setup](#google-gemini-ai-setup)\n-   [Contributing](#contributing)\n-   [License](#license)\n\n## Features\n\n-   Easy-to-use interface for entering YouTube video URLs\n-   Utilizes Google Gemini AI for accurate and concise video summarization\n-   Supports videos in multiple languages\n-   Fast processing and summary generation\n-   Responsive design for both desktop and mobile use\n\n## Screenshots\n\n![Home Page](/frontend/public/Homepage.png)\n![Summary Page](/frontend/public/DemoSummary.png)\n\n## Folder Structure\n\n```\n├── backend/\n│   ├── api/\n│   │   └── processVideo.js\n│   ├── services/\n│   │   ├── summarizer.js        # Handles summary generation logic\n│   │   └── video.js             # Handle video downloading logic\n│   ├── temp/                    # Temporary download files\n│   ├── .env                     # Environment variables\n│   └── index.js                 # Express server setup\n├── frontend/\n│   ├── public/\n│   ├── src/\n│   │   ├── components/\n│   │   │   ├── Navbar.jsx\n│   │   │   ├── InputForm.jsx\n│   │   │   ├── SummaryCard.jsx\n│   │   │   ├── Loading.jsx\n│   │   │   ├── Footer.jsx\n│   │   │   ├── CopyBtn.jsx\n│   │   │   ├── SaveBtn.jsx\n│   │   │   └── RegenerateBtn.jsx\n│   │   ├── helpers/\n│   │   │   └── validation.js    # Validating the URL\n│   │   ├── App.jsx\n│   │   ├── index.css\n│   │   └── main.jsx\n│   └── index.html\n├── .gitignore\n├── LICENSE\n└── README.md\n```\n\n## Getting Started\n\n### Prerequisites\n\n-   Node.js (v14 or higher)\n-   Google Gemini AI API key\n\n### Installation\n\n1. Clone the repository:\n\n    ```bash\n    git clone https://github.com/akdevv/yt-sum\n    cd yt-sum\n    ```\n\n2. Set up the backend:\n\n    1. Navigate to the backend directory:\n        ```bash\n        cd backend\n        ```\n    2. Install backend dependencies:\n        ```bash\n        npm install\n        ```\n    3. Create a .env file in the backend folder and paste your Google Gemini API key:\n        ```js\n        GOOGLE_GEMINI_API_KEY=\u003c\u003cyour_gemini_api_key_here\u003e\u003e\n        ```\n    4. Start the backend server using Nodemon:\n        ```bash\n        nodemon index.js\n        ```\n\n3. Set up the frontend:\n\n    1. Open a new terminal session, then navigate to the frontend directory:\n        ```bash\n        cd frontend\n        ```\n    2. Install frontend dependencies:\n        ```bash\n        npm install\n        ```\n    3. Start the development server:\n        ```bash\n        npm run dev\n        ```\n\n4. Visit `http://localhost:5173` in your browser to use the app.\n\n## Google Gemini AI Setup\n\n1. Go to the [Google AI Studio](https://aistudio.google.com/app/apikey).\n2. Create a new project or select an existing one.\n3. Generate an API key for Gemini AI.\n4. Copy the API key and paste it into your `.env` file.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakdevv%2Fyt-sum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakdevv%2Fyt-sum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakdevv%2Fyt-sum/lists"}