{"id":30286853,"url":"https://github.com/dhruvldrp9/google-meet-bot","last_synced_at":"2025-08-16T21:15:01.903Z","repository":{"id":245618805,"uuid":"818774695","full_name":"dhruvldrp9/Google-Meet-Bot","owner":"dhruvldrp9","description":"This project is a Python bot that automates the process of logging into Gmail, joining a Google Meet, recording the audio of the meeting, and then generating a summary, key points, action items, and sentiment analysis of the meeting. ","archived":false,"fork":false,"pushed_at":"2025-08-12T09:41:08.000Z","size":161,"stargazers_count":91,"open_issues_count":1,"forks_count":32,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-08-12T10:27:22.862Z","etag":null,"topics":["audio-processing","google","google-api","googlebot","googlemeet","googlemeetbot","googlemeetingbot","meet","meetbot"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/google-meet-bot/","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/dhruvldrp9.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,"zenodo":null}},"created_at":"2024-06-22T20:36:07.000Z","updated_at":"2025-08-12T09:42:24.000Z","dependencies_parsed_at":"2025-04-02T15:27:19.685Z","dependency_job_id":"f66aa81b-04f4-4248-958e-ad9d29644ed1","html_url":"https://github.com/dhruvldrp9/Google-Meet-Bot","commit_stats":null,"previous_names":["dhruvldrp9/google-meet-bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dhruvldrp9/Google-Meet-Bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruvldrp9%2FGoogle-Meet-Bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruvldrp9%2FGoogle-Meet-Bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruvldrp9%2FGoogle-Meet-Bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruvldrp9%2FGoogle-Meet-Bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dhruvldrp9","download_url":"https://codeload.github.com/dhruvldrp9/Google-Meet-Bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhruvldrp9%2FGoogle-Meet-Bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270771976,"owners_count":24642391,"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","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["audio-processing","google","google-api","googlebot","googlemeet","googlemeetbot","googlemeetingbot","meet","meetbot"],"created_at":"2025-08-16T21:15:00.670Z","updated_at":"2025-08-16T21:15:01.894Z","avatar_url":"https://github.com/dhruvldrp9.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google-Meet-Bot\nThis project is a Python bot that automates the process of logging into Gmail, joining a Google Meet, recording the audio of the meeting, and then generating a summary, key points, action items, and sentiment analysis of the meeting. \n\n\n## Recording video/audio/transcripts from video conferencing calls\nIf you’re looking to use this repo to retrieve video/audio streams or transcripts from meeting platforms like Zoom, Google Meet, Microsoft Teams, consider checking out [Recall.ai](https://www.recall.ai), an API for meeting recording.\n![Alt Text](https://github.com/dhruvldrp9/Google-Meet-Bot/blob/main/GoogleMeetBot.jpeg)\n\n## Prerequisites\n\n- Python 3.8 or higher\n- Chrome browser\n- OpenAI API Key\n- A Gmail account\n- A Google Meet link\n- ffmpeg/ffprobe installed and available on PATH (for audio trimming if needed)\n\n## Installation\n\n### Option 1: Install from PyPI (Recommended)\n\n```bash\npip install google-meet-bot\n```\n\n### Option 2: Install from source\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/dhruvldrp9/Google-Meet-Bot.git\n   cd Google-Meet-Bot\n   ```\n\n2. Create Python environment:\n   ```bash\n   python3 -m venv env\n   ```\n\n3. Activate environment:\n   - For Unix/Linux/macOS:\n     ```bash\n     source env/bin/activate\n     ```\n   - For Windows:\n     ```bash\n     env\\Scripts\\activate\n     ```\n\n4. Install package (local):\n   ```bash\n   pip install -U build\n   pip install .\n   ```\n\n## Usage\n\n### Command Line Interface\n\nAfter installation, you can use the CLI:\n\n```bash\n# Basic usage\ngoogle-meet-bot --meet-link \"https://meet.google.com/xxx-xxxx-xxx\" --duration 60\n\n# Skip analysis phase\ngoogle-meet-bot --meet-link \"https://meet.google.com/xxx-xxxx-xxx\" --duration 60 --no-analysis\n\n# Run as Python module\npython -m google_meet_bot --meet-link \"https://meet.google.com/xxx-xxxx-xxx\" --duration 60\n```\n\n### Programmatic Usage\n\n```python\nfrom google_meet_bot import JoinGoogleMeet, SpeechToText, AudioRecorder\n\n# Initialize the bot\nbot = JoinGoogleMeet()\nbot.Glogin()\nbot.turnOffMicCam(\"https://meet.google.com/xxx-xxxx-xxx\")\nbot.AskToJoin(\"output.wav\", 60)\n\n# Analyze the recording\nspeech_analyzer = SpeechToText()\nspeech_analyzer.transcribe(\"output.wav\")\n```\n\n## Configuration\n\n5. Configure environment variables:\n   - Create a `.env` file in the project root with the following content:\n     ```\n     # Google Meet Credentials\n     EMAIL_ID=your_email@gmail.com\n     EMAIL_PASSWORD=your_password\n\n     # Meeting Configuration\n     MEET_LINK=https://meet.google.com/xxx-xxxx-xxx\n     RECORDING_DURATION=60\n\n     # Audio Configuration\n     SAMPLE_RATE=44100\n     MAX_AUDIO_SIZE_BYTES=20971520\n\n     # OpenAI Configuration\n     OPENAI_API_KEY=your_openai_api_key\n     GPT_MODEL=gpt-4\n     WHISPER_MODEL=whisper-1\n     ```\n\n\n\n## Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| EMAIL_ID | Your Gmail address | - |\n| EMAIL_PASSWORD | Your Gmail password | - |\n| MEET_LINK | Google Meet URL to join | - |\n| RECORDING_DURATION | Duration to record in seconds | 60 |\n| SAMPLE_RATE | Audio recording sample rate | 44100 |\n| MAX_AUDIO_SIZE_BYTES | Maximum audio file size in bytes | 20971520 (20MB) |\n| OPENAI_API_KEY | Your OpenAI API key | - |\n| GPT_MODEL | GPT model to use for analysis | gpt-4 |\n| WHISPER_MODEL | Whisper model for transcription | whisper-1 |\n\n## Features\n\n- Automated Google Meet login and joining\n- Audio recording of meetings\n- Transcription using OpenAI's Whisper\n- Meeting analysis including:\n  - Abstract summary\n  - Key points extraction\n  - Action items identification\n  - Sentiment analysis\n- Automatic audio compression if size exceeds limit\n- JSON output of meeting analysis\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhruvldrp9%2Fgoogle-meet-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdhruvldrp9%2Fgoogle-meet-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhruvldrp9%2Fgoogle-meet-bot/lists"}