fal-audio

Convert text to speech and transcribe audio URLs via the fal.ai API.

224|32|Updated Jan 22, 2026
One-click install
npx skills add https://github.com/fal-ai-community/skills --skill fal-audio
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fal-audio
Source: https://github.com/fal-ai-community/skills/tree/main/skills/claude.ai/fal-audio
Command: npx skills add https://github.com/fal-ai-community/skills --skill fal-audio

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, and includes scripts (resource) components.

What problem does it solve?

Convert text to speech and transcribe audio using fal.ai models.

Core Features & Use Cases

  • Text-to-Speech: generate natural-sounding speech from input text.
  • Speech-to-Text: transcribe audio URLs into textual transcripts.
  • Use Case: Build accessibility features or voice-enabled assistants with on-demand TTS and STT capabilities.

Quick Start

bash /mnt/skills/user/fal-audio/scripts/text-to-speech.sh --text "Hello, world!" --model "fal-ai/minimax/speech-2.6-turbo" bash /mnt/skills/user/fal-audio/scripts/speech-to-text.sh --audio-url "https://example.com/audio.mp3"

Frequently Asked Questions about fal-audio

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert text to speech using an API from the command line?

You can convert text to speech via command line by running a shell script that calls the fal.ai API using curl, passing input text and a specific TTS model to generate natural-sounding speech. The script exposes model selection and text parameters as CLI arguments.

Can I transcribe speech to text from an audio file URL?

Yes, you can transcribe speech to text by providing a public audio URL to a CLI script. The script sends the URL to the fal.ai speech-to-text API via curl, which processes the audio file and returns a textual transcript suitable for chatbots and accessibility workflows.

Do I need any special dependencies to run fal.ai text-to-speech scripts?

You only need the curl command-line tool installed to execute the text-to-speech and speech-to-text scripts. The scripts rely entirely on curl to handle HTTP requests to the fal.ai API, requiring no additional programming environments or audio processing libraries.

What is the best way to add voice synthesis to a multimedia workflow?

The best way to add voice synthesis to a multimedia workflow is using a CLI script to request on-demand audio generation from fal.ai models. This approach allows you to automate text-to-speech synthesis and speech-to-text transcription by passing parameters directly through shell commands within your existing pipeline.

Does this speech-to-text solution work with specific fal.ai models?

Yes, the speech-to-text solution works with fal.ai models and allows explicit model selection through CLI parameters. For text-to-speech, you can specify models such as fal-ai/minimax/speech-2.6-turbo to control the voice synthesis output directly from the command line.