A desktop application that records meetings (screen and audio) and uses AI to generate meeting summaries.
- Record your screen and audio during meetings
- Automatically transcribe meeting audio using OpenAI's Whisper
- Generate concise summaries using OpenAI's GPT-4
- View and save transcripts and summaries
- Local processing - your recordings stay on your computer
- Node.js (v14+)
- OpenAI API key for transcription and summarization
- Clone this repository
- Install dependencies:
npm install - Start the application:
npm run dev
- Launch the application
- Enter your OpenAI API key (only sent to OpenAI servers)
- Click "Start Recording" to choose which screen/window to record
- Record your meeting
- Click "Stop Recording" when finished
- Save the recording file when prompted
- Wait for the application to process the recording
- View the transcript and summary
To build the application for distribution:
npm run dist
This will create distributable packages in the dist folder.
Your meetings are recorded locally on your computer. Audio is sent to OpenAI only for transcription purposes. No data is permanently stored on any remote servers except as necessary for the OpenAI API to process your request. # meet-recap