Speech & TranscriptionDocumentedScanned

eachlabs-tts

Transcribe audio from URL using EachLabs Speech-to-Text (Scribe.

Share:

Installation

npx clawhub@latest install eachlabs-tts

View the full skill documentation and source below.

Documentation

EachLabs ElevenLabs Speech-to-Text

Transcribe audio files using EachLabs' integration with ElevenLabs Scribe v1 model. Supports diarization and timestamp granularity.

Quick Start

# Basic transcription from URL
{baseDir}/scripts/transcribe.sh 

# With speaker diarization
{baseDir}/scripts/transcribe.sh  --diarize

# Specify language (improves accuracy)
{baseDir}/scripts/transcribe.sh  --lang en

# Full JSON output with timestamps (word-level)
{baseDir}/scripts/transcribe.sh  --json

Options

FlagDescription
--diarizeIdentify different speakers
--lang CODEISO language code (e.g., en, pt, es)
--jsonOutput full JSON with word timestamps
--eventsTag audio events (laughter, music, etc.)

Supported Input

Currently supports Audio URLs only. The file must be publicly accessible via HTTP/HTTPS.

API Key

Set EACHLABS_API_KEY environment variable, or configure in clawdbot.json:

{
  skills: {
    entries: {
      "eachlabs-elevenlabs-stt": {
        apiKey: "el_..."
      }
    }
  }
}