Media
Combina una transcripción con timestamps y el audio para marcar muletillas (eh, este, 嗯…) y opcionalmente enmudecerlas o eliminarlas.
Llama a esta herramienta desde tu código en tres lenguajes.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-filler-word-removal-map' \
-H 'Content-Type: application/json' \
-d '{"filename":"audioFile.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/es/api/tools/audio-filler-word-removal-map' \
-F 'audioFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'transcript=Paste SRT, VTT, or "0:05 hello world" lines…' \
-F 'fillerLanguage=en' \
-F 'customFillers=um, uh, hmm' \
-F 'outputMode=map' \
-F 'padAroundCut=0.05' \
-F 'outputFormat=wav'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/audio-filler-word-removal-map| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| audioFile | filesubida requerida | Sí | — |
| transcript | textarea | Sí | — |
| fillerLanguage | select | No | — |
| customFillers | text | No | — |
| outputMode | select | No | — |
| padAroundCut | number | No | — |
| outputFormat | select | No | — |
Resultado de archivo
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-audio-filler-word-removal-map": {
"name": "audio-filler-word-removal-map",
"description": "Combina una transcripción con timestamps y el audio para marcar muletillas (eh, este, 嗯…) y opcionalmente enmudecerlas o eliminarlas.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-filler-word-removal-map",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "audio-filler-word-removal-map",
"arguments": {
"audioFile": "https://example.com/file.ext",
"transcript": "Paste SRT, VTT, or \"0:05 hello world\" lines…",
"fillerLanguage": "en",
"customFillers": "um, uh, hmm",
"outputMode": "map",
"padAroundCut": 0.05,
"outputFormat": "wav"
}
}
}¿Dudas o problemas? Contacta con [email protected]