✅ System Status: Online & Ready
🌐 API Base URL: https://ffmpeg.insiemi.co
📦 Max File Size: 5GB
/api/ffmpegUpload a media file and execute an FFmpeg command on it.
file (required) - The media file you want to process.command (required) - The FFmpeg arguments (excluding the 'ffmpeg' binary name itself).input.[ext] (e.g., input.mp4 or simply input).output.[ext] (e.g., output.gif).-i input.mp4 -vf scale=320:-1 -r 10 output.gifcurl -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.