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 vous avez un fichier audio/vidéo accessible publiquement et besoin d'une transcription automatique via Fireflies.
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é
PrudenceThe 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.
- •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 https://example.com/meeting.mp3 to Fireflies for transcription with title 'Q4 Planning'.Upload https://example.com/team-sync.mp3 to Fireflies, title 'Team Sync', and send completion notification to https://myapp.com/webhook.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
-
Verify API key is set:
test -n "$FIREFLIES_API_KEY" && echo "Ready" || echo "ERROR: Set FIREFLIES_API_KEY" -
Ensure the audio URL is publicly accessible.
-
Suggest adding a title for easier identification.
-
Transcription is asynchronous - suggest using webhook for notification or polling the transcripts list.
Ingénierie de Prompts
Data & IA
Bonnes pratiques et templates de prompt engineering pour maximiser les résultats IA.
Visualisation de Données
Data & IA
Génère des visualisations de données et graphiques adaptés à vos données.
Architecture RAG
Data & IA
Guide de configuration d'architectures RAG (Retrieval-Augmented Generation).