Télécharger enregistrement d'appel

VérifiéSûr

Télécharge l'enregistrement audio d'une session d'appel dans un fichier local. Utile pour récupérer un enregistrement d'appel à des fins d'analyse ou de relecture. À utiliser avec un identifiant de session (UUID).

Spar Skills Guide Bot
DeveloppementDébutant
5002/06/2026
Claude Code
#vocal-bridge#call-recording#download#cli#audio

Recommandé pour

Notre avis

Télécharge l'enregistrement audio d'une session d'appel vocal via l'outil CLI vocal-bridge.

Points forts

  • Commande simple avec un identifiant unique
  • Possibilité de spécifier un chemin de sortie personnalisé
  • Intégration facile dans des scripts Bash

Limites

  • Nécessite que l'enregistrement soit activé pour l'agent
  • Le format audio dépend de la configuration de l'agent
  • Il faut vérifier la disponibilité de l'enregistrement au préalable
Quand l'utiliser

Lorsque vous avez besoin de récupérer l'enregistrement audio d'une session d'appel spécifique pour le sauvegarder localement.

Quand l'éviter

Si vous souhaitez seulement consulter des métadonnées de session sans télécharger l'audio.

Analyse de sécurité

Sûr
Score qualité85/100

The skill uses Bash to run standard installation and download commands for a CLI tool, with no destructive, exfiltration, or obfuscated actions.

Aucun point d'attention détecté

Exemples

Download recording with default naming
Download the audio recording for session ID abc12345-6789-def0-1234-56789abcdef0 using vocal-bridge.
Download recording to a custom path
Download the call recording for session abc12345-6789-def0-1234-56789abcdef0 and save it to /home/user/recordings/call.ogg using vocal-bridge.

name: download description: Download call recording for a specific session. Saves the audio file to the current directory. allowed-tools: Bash

Download the audio recording for a specific call session.

First ensure CLI is installed:

pip install --upgrade vocal-bridge

Download Recording

$ARGUMENTS should contain a session ID (UUID):

vb logs download $ARGUMENTS

This downloads the audio file to the current directory with filename recording_<id>.<format>.

Custom Output Path

To save to a specific location, use the -o flag:

vb logs download <session_id> -o /path/to/call.ogg

Notes

  • Recordings are only available if the agent has call recording enabled
  • Audio format depends on agent configuration (usually ogg or wav)
  • Use /vocal-bridge:logs <session_id> first to check if a recording is available
Skills similaires