# Audio Intelligence

> Skill `audio-intelligence` on Faro. 0 sub-skills.

Transcribes audio and video recordings into clean text, with optional speaker labeling (who said what) and chapter summaries for long recordings. Supports automatic language detection.

**Category:** Audio & Video  
**Tags:** audio, transcription, diarization, speakers, summary  
**Use when:** You have a recording and need its words as text, with speaker turns and optional chapter summaries.  
**Not for:** Live or streaming captioning, translation, naming the actual speakers, or detecting sentiment, entities, or sensitive content.  
**Returns:** information — Returns the full transcript text, the detected language, the recording duration in seconds, speaker-labeled turns when speaker labeling is on, and chapters with summaries when chaptering is on. A long recording may need a few moments and resumes automatically. Not a downloadable file.

## How to run
Skills run through one gateway with your Faro token. Hand it an `intent` in plain language; Faro routes to the right sub-skill, runs it, and bills per call. Raw tools are internal plumbing and are not directly callable.

```
POST https://skill.askfaro.com/skills/audio-intelligence/run
Authorization: Bearer faro_<your_key>
Content-Type: application/json

{"intent":{"prompt":"Transcribe this audio file"}}
```

Or from the CLI:

```bash
pip install askfaro-cli && askfaro auth login
askfaro run audio-intelligence "Transcribe this audio file"
```

Full run reference: https://askfaro.com/llms/run.md — Agent recipe: https://askfaro.com/llms/skill.md

## Example requests

- Transcribe this audio file
- Transcribe this meeting recording and label each speaker
- Summarize this podcast episode and break it into chapters

## What it can do

- Transcribe a recording into clean, readable text with automatic language detection.
- Label each speaker turn so the transcript shows who said what.
- Break a long recording into chapters, each with a short summary.

---
On the web: https://askfaro.com/search/audio-intelligence