Téléchargement Audio Fireflies

VérifiéPrudence

Téléchargez des fichiers audio ou vidéo (MP3, WAV, M4A, MP4, MOV, WEBM) vers Fireflies pour transcription. Utilisez des options comme un titre, une langue, ou une URL de webhook pour être notifié à la fin du traitement.

Spar Skills Guide Bot
Data & IADébutant
6002/06/2026
Claude CodeCursorWindsurf
#audio-upload#ai-transcription#fireflies-api#meeting-transcription

Recommandé pour

Notre avis

Télécharge un fichier audio ou vidéo vers Fireflies pour transcription automatique via l'API Fireflies.

Points forts

  • Commande simple et claire avec options de titre, webhook et langue.
  • Support de nombreux formats audio et vidéo (MP3, WAV, M4A, MP4, MOV, WEBM).
  • Intégration asynchrone avec notification webhook possible.
  • Possibilité d'ajouter des participants et un identifiant de référence.

Limites

  • Nécessite une URL publique accessible, pas de téléchargement direct de fichier local.
  • La transcription est asynchrone, il faut attendre ou configurer un webhook.
  • Dépend de l'API Fireflies et nécessite une clé API valide.
Quand l'utiliser

Quand vous avez un fichier audio/vidéo accessible publiquement et besoin d'une transcription automatique via Fireflies.

Quand l'éviter

Si le fichier n'est pas accessible publiquement ou si vous avez besoin d'une transcription instantanée sans délai.

Analyse de sécurité

Prudence
Score qualité88/100

The skill instructs running a third-party npm package with automatic confirmation, which could execute untrusted code if the package is compromised, though the package appears legitimate. No inherent data destruction or exfiltration is instructed.

Points d'attention
  • Uses `npm exec --yes` which automatically installs and executes a third-party package without manual review, increasing supply-chain risk if the package is compromised.
  • The command runs in Bash with network access, potentially exposing data if the package behaves unexpectedly.

Exemples

Upload meeting recording
Upload https://example.com/meeting.mp3 to Fireflies for transcription with title 'Q4 Planning'.
Upload with webhook
Upload https://example.com/team-sync.mp3 to Fireflies, title 'Team Sync', and send completion notification to https://myapp.com/webhook.
Upload with language and reference
Upload https://example.com/german-meeting.mp3 to Fireflies with title 'German Meeting', language 'de', and reference ID 'call_2024_001'.

name: ff-audio description: Upload audio files for transcription. Use when uploading MP3, WAV, or video files to Fireflies for processing. allowed-tools: Bash(npm exec --yes --package=fireflies-api -- fireflies-api audio *)

Fireflies Audio Upload

Upload audio files for transcription.

Command

npm exec --yes --package=fireflies-api -- fireflies-api audio upload <url> [options]

Options

  • --title <title> - Title for the transcription
  • --webhook <url> - Webhook URL for completion notification
  • --language <code> - Transcription language code
  • --save-video - Save video if applicable
  • --attendee <email> - Add attendee email
  • --reference-id <id> - Custom reference ID

Supported Formats

The URL must point to a publicly accessible audio/video file. Supported formats include:

  • MP3, WAV, M4A (audio)
  • MP4, MOV, WEBM (video)

Examples

# Upload audio file
npm exec --yes --package=fireflies-api -- fireflies-api audio upload "https://example.com/meeting.mp3" --title "Q4 Planning"

# Upload with webhook notification
npm exec --yes --package=fireflies-api -- fireflies-api audio upload "https://example.com/meeting.mp3" --title "Team Sync" --webhook "https://myapp.com/webhook"

# Upload with language specification
npm exec --yes --package=fireflies-api -- fireflies-api audio upload "https://example.com/meeting.mp3" --title "German Meeting" --language "de"

# Upload with custom reference
npm exec --yes --package=fireflies-api -- fireflies-api audio upload "https://example.com/meeting.mp3" --title "Client Call" --reference-id "call_2024_001"

Instructions

  1. Verify API key is set:

    test -n "$FIREFLIES_API_KEY" && echo "Ready" || echo "ERROR: Set FIREFLIES_API_KEY"
    
  2. Ensure the audio URL is publicly accessible.

  3. Suggest adding a title for easier identification.

  4. Transcription is asynchronous - suggest using webhook for notification or polling the transcripts list.

Skills similaires