Transcription en temps réel Fireflies

VérifiéSûr

Diffuse en continu la transcription en direct d'une réunion active via WebSocket. Les lignes affichent l'orateur et le texte transcrit au fur et à mesure. Utilisez-la pour suivre une réunion en temps réel pendant qu'elle se déroule.

Spar Skills Guide Bot
ProductiviteDébutant
6002/06/2026
Claude CodeCursorWindsurf
#realtime#transcription#meeting#fireflies#streaming

Recommandé pour

Notre avis

Diffuse en temps réel la transcription des réunions actives via WebSocket, affichant l'orateur et le texte en direct.

Points forts

  • Flux de transcription en direct au fur et à mesure que la parole est détectée.
  • Utilisation simple en ligne de commande avec un seul identifiant de réunion.
  • Intègre l'API Fireflies pour un accès authentifié.
  • Permet de suivre une réunion sans y être présent.

Limites

  • Nécessite une réunion active avec le bot Fireflies déjà présent.
  • Un certain délai dû au traitement de la parole est normal.
  • Ne fonctionne que pour une seule réunion à la fois en ligne de commande.
Quand l'utiliser

Utilisez cette compétence lorsque vous devez surveiller ou capturer la transcription en direct d'une réunion en cours équipée de Fireflies.

Quand l'éviter

Ne l'utilisez pas pour des réunions passées ou si vous avez besoin d'un enregistrement permanent ; utilisez plutôt l'API Fireflies pour récupérer les transcriptions.

Analyse de sécurité

Sûr
Score qualité90/100

The skill uses a specific npm package to connect to the Fireflies API WebSocket for live transcription. There is no destructive or exfiltrating instruction, no obfuscation, and the command is limited to the intended purpose. The allowed-tool restricts execution to the named package, minimizing risk.

Aucun point d'attention détecté

Exemples

Live transcription from known meeting ID
Start streaming the live transcription for meeting ID meeting_abc123 using the Fireflies realtime command.
Monitor current active meeting
I'm in a meeting with the Fireflies bot. Can you stream the real-time transcription so I can see it in my terminal?

name: ff-realtime description: Stream live transcription from active meetings in real-time via WebSocket. Use when monitoring live meeting transcription. allowed-tools: Bash(npm exec --yes --package=fireflies-api -- fireflies-api realtime *)

Fireflies Realtime

Stream live transcription from active meetings in real-time.

This is the key differentiator of this SDK - live transcription streaming via Socket.IO.

Command

npm exec --yes --package=fireflies-api -- fireflies-api realtime <meeting-id>

How It Works

  1. Connects to Fireflies WebSocket at wss://api.fireflies.ai/ws/realtime
  2. Authenticates with your API key
  3. Streams transcription chunks as they arrive
  4. Output appears continuously as speakers talk

Output Format

Each line shows the speaker and their transcribed text:

John: Good morning everyone, let's get started.
Sarah: I have some updates on the project.
John: Great, please go ahead.

Examples

# Stream from an active meeting
npm exec --yes --package=fireflies-api -- fireflies-api realtime "meeting_abc123"

Requirements

  • An active meeting with Fireflies bot present
  • Valid API key with realtime access
  • The meeting must be currently in progress

Notes

  • Press Ctrl+C to stop streaming
  • Chunks arrive in real-time as speech is detected
  • Some delay is normal due to speech processing

Instructions

  1. Verify API key is set:

    test -n "$FIREFLIES_API_KEY" && echo "Ready" || echo "ERROR: Set FIREFLIES_API_KEY"
    
  2. The meeting ID can be obtained from:

    • npm exec --yes --package=fireflies-api -- fireflies-api meetings list for active meetings
    • The Fireflies dashboard
  3. Start the realtime stream and let the user see transcription as it happens.

  4. Warn user that Ctrl+C will be needed to stop the stream.

Skills similaires