Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.screenpi.pe/llms.txt

Use this file to discover all available pages before exploring further.

screenpipe records meetings without a bot joining the call. it captures the meeting window, microphone, optional system audio, transcript, speaker labels, calendar context, and the surrounding screen history. screenpipe recording settings

what screenpipe captures

layerwhat it adds
screenslides, docs, pricing pages, dashboards, chat, and CRM screens shared or viewed during the call
audiolocal transcript from your microphone and selected audio sources
speakersspeaker IDs, names, aliases, similar-speaker suggestions, and merge history
calendarattendee names, meeting title, and time window for better labeling
notesAI summaries, action items, and follow-up context
timelineframe links and time anchors you can revisit later

setup checklist

  1. open settings -> recording and choose the microphone and system audio sources you want.
  2. connect Google Calendar in settings -> connections if you want attendee-aware speaker naming.
  3. open the meeting app normally: Zoom, Google Meet, Microsoft Teams, Slack huddles, or another call surface.
  4. let screenpipe record and transcribe in the background.
  5. open the meeting from the timeline or search with content_type=audio.
quick verification:
curl http://localhost:3030/health
curl "http://localhost:3030/search?content_type=audio&limit=1"
calendar context is especially strong for 1:1 meetings. when the meeting has exactly two attendees, screenpipe can infer the other speaker more reliably.

live transcript workflow

Use the meeting transcript sidebar to:
  • rename a speaker once and propagate the label through the meeting
  • search for similar speakers before merging duplicates
  • copy the full transcript as plain text
  • open the related timeline moment when you need visual context
  • summarize the meeting with your default AI or a selected pipe

summarize with a pipe

meeting summaries can use any installed or store pipe. use a pipe when you want a repeatable output format, CRM writeback, an Obsidian note, or a sales-call summary that always includes the same fields. good summary-pipe instructions include:
Summarize the meeting in this format:

## decision
## customer pain
## objections
## action items
## follow-up email draft

Use transcript evidence and include timeline links when useful.
for customer calls, add evidence fields so the output is usable:
Summarize the meeting.
Include:
- customer goal
- current workflow
- objections or privacy concerns
- requested integrations
- next action
- exact transcript quotes only when useful

speaker cleanup

curl "http://localhost:3030/speakers/unnamed?limit=10"

curl -X POST http://localhost:3030/speakers/update \
  -H "Content-Type: application/json" \
  -d '{"id": 1, "name": "Sarah Chen"}'

curl "http://localhost:3030/speakers/similar?speaker_id=1"

curl -X POST http://localhost:3030/speakers/merge \
  -H "Content-Type: application/json" \
  -d '{"speaker_to_keep_id": 1, "speaker_to_merge_id": 2}'
name speakers from the UI first when you can. use the API when building cleanup tools or recurring workflows.

meeting APIs

curl "http://localhost:3030/meetings?limit=20"
curl "http://localhost:3030/meetings/status"

curl -X POST http://localhost:3030/meetings/start
curl -X POST http://localhost:3030/meetings/stop

curl -X POST http://localhost:3030/meetings/merge \
  -H "Content-Type: application/json" \
  -d '{"meeting_ids": [12, 13]}'
use the meetings API when an automation needs meeting lists, current meeting status, merge cleanup, or downstream note updates.

Zoom, Meet, and Teams tradeoffs

toolbest setupnotes
Zoommic plus system audio, Zoom connection when you need cloud recording metadataOAuth can enrich meeting metadata; local capture still works without a bot
Google Meetmic plus system audio, Google Calendar connectioncalendar attendee context helps speaker naming
Microsoft Teamsmic plus system audio, Teams or Microsoft 365 connection for structured contextuseful for enterprise rollouts and meeting-linked docs

troubleshooting

symptomtry this
empty transcriptverify microphone permission, selected device, and content_type=audio search
late transcriptwait for the transcription batch to finish or switch to realtime transcription
speaker names wrongconnect calendar, rename the speaker, then merge similar speakers
duplicated meetinguse merge from the UI or /meetings/merge
summary missed contextchoose a custom pipe that also searches screen text and accessibility context during the meeting window
audio dropoutsreduce batch duration, select fewer audio devices, or use a faster/cloud transcription engine