{"id":48578102,"url":"https://github.com/amanbig/meetings_app","last_synced_at":"2026-04-08T16:04:04.601Z","repository":{"id":263790050,"uuid":"887400795","full_name":"Amanbig/meetings_app","owner":"Amanbig","description":"This project is a Meetings Summarizer built with FastAPI on the backend and a React frontend. It allows users to upload video or audio files, transcribe content, summarize it, ask contextual questions, and convert summaries to audio.","archived":false,"fork":false,"pushed_at":"2025-03-22T13:23:17.000Z","size":5184,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-30T02:44:34.218Z","etag":null,"topics":["chatbot","fastapi","groq-api","nextjs","shadcn-ui","speechtotext","texttospeech"],"latest_commit_sha":null,"homepage":"https://meetings-app-opal.vercel.app","language":"JavaScript","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/Amanbig.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}},"created_at":"2024-11-12T17:18:33.000Z","updated_at":"2025-07-24T19:02:47.000Z","dependencies_parsed_at":"2024-11-20T11:30:28.414Z","dependency_job_id":"d148350e-1eb1-485b-b8bc-61ae315a18d8","html_url":"https://github.com/Amanbig/meetings_app","commit_stats":null,"previous_names":["amanbig/meetings_app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Amanbig/meetings_app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanbig%2Fmeetings_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanbig%2Fmeetings_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanbig%2Fmeetings_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanbig%2Fmeetings_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Amanbig","download_url":"https://codeload.github.com/Amanbig/meetings_app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanbig%2Fmeetings_app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31562697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["chatbot","fastapi","groq-api","nextjs","shadcn-ui","speechtotext","texttospeech"],"created_at":"2026-04-08T16:04:04.388Z","updated_at":"2026-04-08T16:04:04.585Z","avatar_url":"https://github.com/Amanbig.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meetings Summarizer\n\nThis project is a Meetings Summarizer built with **FastAPI** on the backend and a **React** frontend. It allows users to upload video or audio files, transcribe content, summarize it, ask contextual questions, and convert summaries to audio.\n\n## Features\n\n### Backend (FastAPI)\n- **Transcription**: Extract audio from video files and transcribe it using the Groq Whisper model.\n- **Summarization**: Summarize the transcription with an AI model.\n- **Question Answering**: Ask contextual questions based on the transcription or summary.\n- **Text-to-Speech**: Convert text summaries into audio files.\n- **CORS Support**: Full support for cross-origin requests.\n\n### Frontend (React)\n- **File Upload**: Upload videos or audio files directly from the browser.\n- **Real-time Updates**: Display transcriptions, summaries, and answers dynamically.\n- **Audio Playback**: Listen to AI-generated audio summaries.\n- **Responsive UI**: Styled with modern UI components and animations.\n\n## Tech Stack\n\n### Backend\n- **FastAPI**: For building RESTful APIs.\n- **Groq API**: For transcription and AI processing.\n- **Pyttsx3**: For text-to-speech.\n- **MoviePy**: For extracting audio from video.\n- **Pydub**: For audio processing.\n- **dotenv**: For environment variable management.\n\n### Frontend\n- **React**: For building the user interface.\n- **Framer Motion**: For animations.\n- **Axios**: For API requests.\n- **ShadCN Components**: For styling UI components.\n- **Lucide React Icons**: For modern SVG icons.\n\n## Installation\n\n### Backend\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/Amanbig/meetings_app.git\n   ```\n\n2. Run Frontend:\n    ```bash\n    npm run dev\n    ```\n\n3. Create a virtual environment and activate it:\n    ```bash\n    cd meetings_app/backend\n    python -m venv venv\n    source venv/bin/activate   # On Windows: venv\\Scripts\\activate\n    ```\n\n4. Install dependencies:\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n5. Set up environment variables: Create a .env file and add your Groq API key:\n    ```\n    GROQ_API_KEY=\u003cyour-groq-api-key\u003e\n    ```\n6. Set the backend api\n    Make changes in the urls.js file with your endpoint\n    ```javascript\n    var endpoint = 'your_endpoint_here';\n    ```\n\n6. Run the backend\n    ```bash\n    fastapi dev app.py\n    ```\n\n## Contributing\n\n1. **Fork the repository** on GitHub.\n2. **Create a new branch** (`git checkout -b feature/YourFeature`).\n3. **Make your changes** and commit (`git commit -am 'Add new feature'`).\n4. **Push to the branch** (`git push origin feature/YourFeature`).\n5. **Create a new Pull Request for the changes made**.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famanbig%2Fmeetings_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famanbig%2Fmeetings_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famanbig%2Fmeetings_app/lists"}