🎬 FFmpeg Worker API

✅ System Status: Online & Ready

🌐 API Base URL: https://ffmpeg.insiemi.co

📦 Max File Size: 5GB

Available Endpoints

POST /api/ffmpeg

Upload a media file and execute an FFmpeg command on it.

Form Data Parameters:

How to write your command:

Example Usage (cURL)

curl -X POST \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "file=@my_video.mp4" \
  -F "command=-i input.mp4 -c:v libx264 -crf 23 output.mp4" \
  https://ffmpeg.insiemi.co/api/ffmpeg \
  --output processed_video.mp4

Note: Processing time is limited to 5 minutes per request. The processed file will be returned directly in the response body.