assemblyai-common-errors

Featured

Diagnose and fix AssemblyAI common errors and exceptions. Use when encountering AssemblyAI errors, debugging failed transcriptions, or troubleshooting streaming and LeMUR issues. Trigger with phrases like "assemblyai error", "fix assemblyai", "assemblyai not working", "debug assemblyai", "transcription failed".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# AssemblyAI Common Errors ## Overview Quick reference for the most common AssemblyAI errors across transcription, streaming, and LeMUR APIs with real error messages and solutions. ## Prerequisites - `assemblyai` package installed - API key configured - Access to application logs or console ## Instructions ### Error 1: Authentication Failed ``` Error: Authentication error: Invalid API key Status: 401 ``` **Cause:** API key is missing, invalid, or revoked. **Solution:** ```bash # Verify key is set echo $ASSEMBLYAI_API_KEY # Test directly curl -H "Authorization: $ASSEMBLYAI_API_KEY" \ https://api.assemblyai.com/v2/transcript \ -X GET ``` --- ### Error 2: Transcription Status Error ```json { "status": "error", "error": "Download error: unable to download..." } ``` **Cause:** The `audio` URL is not publicly accessible, has expired, or returned non-audio content. **Solution:** ```typescript // Verify URL is accessible const response = await fetch(audioUrl, { method: 'HEAD' }); console.log('Content-Type:', response.headers.get('content-type')); console.log('Status:', response.status); // Content-Type should be audio/* or video/* // For private files, upload directly const transcript = await client.transcripts.transcribe({ audio: './local-file.mp3', // SDK handles upload }); ``` --- ### Error 3: Could Not Process Audio ```json { "status": "error", "error": "Audio file could not be processed" } ``` **Cause:** Corrupted file, unsupported codec, file too short ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

assemblyai-install-auth

Install and configure AssemblyAI SDK authentication. Use when setting up a new AssemblyAI integration, configuring API keys, or initializing the assemblyai npm package in your project. Trigger with phrases like "install assemblyai", "setup assemblyai", "assemblyai auth", "configure assemblyai API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-core-workflow-b

Execute AssemblyAI streaming transcription and LeMUR workflows. Use when implementing real-time speech-to-text, live captions, voice agents, or LLM-powered audio analysis with LeMUR. Trigger with phrases like "assemblyai streaming", "assemblyai real-time", "assemblyai live transcription", "assemblyai LeMUR", "assemblyai summarize audio".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-hello-world

Create a minimal working AssemblyAI transcription example. Use when starting a new AssemblyAI integration, testing your setup, or learning basic transcription patterns. Trigger with phrases like "assemblyai hello world", "assemblyai example", "assemblyai quick start", "simple assemblyai transcription".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-security-basics

Apply AssemblyAI security best practices for API keys, PII, and access control. Use when securing API keys, implementing PII redaction, or configuring temporary tokens for browser-side streaming. Trigger with phrases like "assemblyai security", "assemblyai secrets", "secure assemblyai", "assemblyai API key security", "assemblyai PII".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-core-workflow-a

Execute AssemblyAI primary workflow: async transcription with audio intelligence. Use when transcribing audio/video files, enabling speaker diarization, sentiment analysis, entity detection, PII redaction, or content moderation. Trigger with phrases like "assemblyai transcribe", "assemblyai transcription", "transcribe audio", "speaker diarization assemblyai".

2,266 Updated today
jeremylongshore