惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Get an FFmpeg API Key in 60 Seconds
Javid Jamae · 2026-06-16 · via DEV Community

Javid Jamae

Originally published at ffmpeg-micro.com

FFmpeg doesn't have an API. It's a command-line tool. If you want to process video from your app, you either shell out to a local FFmpeg binary or call a cloud service that wraps FFmpeg behind a REST API.

FFmpeg Micro is that cloud service. You get an API key, send an HTTP request with your video URL and the operation you want, and get the result back. No FFmpeg installation, no server to manage.

This guide walks through getting your API key and making your first transcode call. The whole thing takes about 60 seconds.

Step 1: Create Your Free Account

Go to ffmpeg-micro.com/auth/signup and sign up with your email or GitHub account. The free tier gives you 100 compute minutes per month, which is enough to process hundreds of short clips.

No credit card required. No trial period. The free tier doesn't expire.

Step 2: Copy Your API Key

After signing in, go to your API keys dashboard. You'll see your default API key. Click the copy button.

Your API key looks like a long random string. Keep it in an environment variable, not hardcoded in your source:

export FFMPEG_MICRO_API_KEY="your-api-key-here"

All API requests use Bearer token authentication. Include this header on every call:

Authorization: Bearer YOUR_API_KEY

Step 3: Make Your First API Call

The main endpoint is POST https://api.ffmpeg-micro.com/v1/transcodes. Send it a video URL and an output format, and it queues a transcode job.

Here's a working example that converts a public MP4 to WebM:

curl -X POST https://api.ffmpeg-micro.com/v1/transcodes \
  -H "Authorization: Bearer $FFMPEG_MICRO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": [{ "url": "https://www.ffmpeg-micro.com/samples/quickstart-sample.mp4" }],
    "outputFormat": "webm"
  }'

The response comes back immediately with a job object:

{
  "id": "b5f5a9c0-9e33-4e77-8a5b-6a0c2cd9c0b3",
  "status": "queued",
  "output_format": "webm",
  "billable_minutes": 1,
  "created_at": "2026-06-16T10:00:00.000Z"
}

The job processes asynchronously. Poll the status with a GET request:

curl https://api.ffmpeg-micro.com/v1/transcodes/YOUR_JOB_ID \
  -H "Authorization: Bearer $FFMPEG_MICRO_API_KEY"

When status changes to completed, the output_url field contains your result. Use the download endpoint to get a signed HTTPS URL you can fetch directly:

curl https://api.ffmpeg-micro.com/v1/transcodes/YOUR_JOB_ID/download \
  -H "Authorization: Bearer $FFMPEG_MICRO_API_KEY"

This returns a URL that's valid for 10 minutes.

Beyond Simple Conversions

The preset field handles common operations without you needing to know FFmpeg flags:

curl -X POST https://api.ffmpeg-micro.com/v1/transcodes \
  -H "Authorization: Bearer $FFMPEG_MICRO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": [{ "url": "https://www.ffmpeg-micro.com/samples/quickstart-sample.mp4" }],
    "outputFormat": "mp4",
    "preset": {
      "quality": "high",
      "resolution": "720p"
    }
  }'

For full control, use the options array to pass raw FFmpeg flags:

curl -X POST https://api.ffmpeg-micro.com/v1/transcodes \
  -H "Authorization: Bearer $FFMPEG_MICRO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": [{ "url": "https://www.ffmpeg-micro.com/samples/quickstart-sample.mp4" }],
    "outputFormat": "mp4",
    "options": [
      { "option": "-c:v", "argument": "libx265" },
      { "option": "-crf", "argument": "28" },
      { "option": "-preset", "argument": "slow" }
    ]
  }'

This transcodes to H.265 with CRF 28 and slow preset. Same as running ffmpeg -i input.mp4 -c:v libx265 -crf 28 -preset slow output.mp4 locally, but without managing any infrastructure.

Uploading Your Own Files

For private videos, use the three-step upload flow:

  1. Get a presigned URL from POST /v1/upload/presigned-url with your filename, content type, and file size
  2. Upload the file directly to the returned URL with an HTTP PUT
  3. Confirm the upload via POST /v1/upload/confirm to get a gs:// URL you can use in transcode requests

The presigned URL flow keeps your files off the FFmpeg Micro servers entirely. Your video goes straight to Google Cloud Storage.

What the Free Tier Includes

The free plan gives you 100 compute minutes per month. A "compute minute" is based on your input video duration, not wall-clock processing time. A 30-second video uses 0.5 compute minutes regardless of how long the transcode takes.

100 minutes covers roughly 200 short clips (30s each) or 10 longer videos (10 min each). If you need more, paid plans start at $19/month.

FAQ

Does FFmpeg have a native API?

No. FFmpeg is a command-line tool that runs locally. To call FFmpeg via HTTP, you need a wrapper service. FFmpeg Micro is a cloud API that runs FFmpeg on managed infrastructure and exposes it through REST endpoints.

What formats does the FFmpeg Micro API support?

Output formats include MP4, WebM, and MOV. Input formats include MP4, WebM, AVI, QuickTime, MKV, plus audio formats like MP3, WAV, FLAC, and AAC.

Can I use FFmpeg Micro from no-code tools like Make.com or Zapier?

Yes. Any platform that can make HTTP requests can call the API. FFmpeg Micro has an official Make.com app, and you can use Zapier's webhook action to call the REST API directly.

Is there a rate limit?

The free tier has a quota of 100 compute minutes per month. There's no per-second rate limit on API calls. Paid plans increase the monthly quota.

Do I need to install FFmpeg locally to use the API?

No. That's the whole point. FFmpeg Micro runs FFmpeg in the cloud. You send an HTTP request, it processes your video, you download the result. Zero local dependencies.