# Send Audio to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "audio",
    "name": "Audio",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/audio",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/audio",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/audio",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=audio",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "commands.md",
      "loudness.md",
      "podcast.md",
      "transcription.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "audio",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T01:42:55.188Z",
      "expiresAt": "2026-05-06T01:42:55.188Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=audio",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=audio",
        "contentDisposition": "attachment; filename=\"audio-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "audio"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/audio"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/audio",
    "downloadUrl": "https://openagent3.xyz/downloads/audio",
    "agentUrl": "https://openagent3.xyz/skills/audio/agent",
    "manifestUrl": "https://openagent3.xyz/skills/audio/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/audio/agent.md"
  }
}
```
## Documentation

### Requirements

Required:

ffmpeg / ffprobe — core audio processing

Optional (for advanced features):

sox — additional noise reduction
whisper — local transcription (or use API)
demucs — stem separation

### Quick Reference

SituationLoadFFmpeg commands by taskcommands.mdLoudness standards by platformloudness.mdPodcast production workflowpodcast.mdTranscription workflowtranscription.md

### Core Capabilities

TaskMethodConvert formatsFFmpeg (-acodec)Remove noiseFFmpeg filters or SoXNormalize loudnessffmpeg-normalize or -af loudnormTranscribeWhisper → text, SRT, VTTSeparate stemsDemucs (vocals, drums, bass, other)

### Execution Pattern

Clarify goal — What format? What loudness? What platform?
Analyze source — ffprobe for codec, sample rate, channels, duration
Process — FFmpeg/SoX for transformation
Verify — Check output plays, meets specs, sounds correct
Deliver — Provide file to user

### Common Requests → Actions

User saysAgent does"Convert to MP3"-acodec libmp3lame -q:a 2"Remove background noise"Apply highpass/lowpass or dedicated denoiser"Normalize for podcast"-af loudnorm=I=-16:TP=-1.5:LRA=11"Transcribe this"Whisper → output SRT/VTT/TXT"Extract audio from video"-vn -acodec copy or re-encode"Make it smaller"Lower bitrate: -b:a 128k or -b:a 96k"Speed up 1.5x"-af atempo=1.5

### Format Quick Reference

FormatUse CaseQualityWAVMaster, editingLosslessFLACArchive, audiophileLossless compressedMP3Universal sharingLossy, 128-320 kbpsAAC/M4AApple, podcastsLossy, efficientOGG/OpusWhatsApp, DiscordLossy, very efficient

### Quality Defaults

Podcast: -16 LUFS (Spotify), -19 LUFS (Apple)
Music: -14 LUFS (Spotify), -16 LUFS (Apple Music)
MP3 quality: VBR -q:a 2 (~190 kbps) or CBR -b:a 192k
Sample rate: 44.1kHz for music, 48kHz for video sync

### Scope

This skill:

Processes audio files user explicitly provides
Runs FFmpeg commands on user request
Does NOT access cloud services without user knowing
Does NOT store files persistently (user manages their files)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T01:42:55.188Z
- Expires at: 2026-05-06T01:42:55.188Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/audio)
- [Send to Agent page](https://openagent3.xyz/skills/audio/agent)
- [JSON manifest](https://openagent3.xyz/skills/audio/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/audio/agent.md)
- [Download page](https://openagent3.xyz/downloads/audio)