cURL
curl --request POST \ --url http://localhost:6699/api/v1/export/clips \ --header 'Content-Type: application/json' \ --header 'X-License-Key: <api-key>' \ --data ' { "clips": [ { "source_path": "<string>", "start_seconds": 123, "end_seconds": 123, "subfolder": "<string>" } ], "output_dir": "<string>", "copy_codec": true } '
{ "results": [ { "success": true, "output_path": "<string>", "error": "<string>" } ], "summary": "3/3 clips exported successfully" }
Exports trimmed video clips to a folder using ffmpeg. Each clip specifies a source file and in/out points. Supports subfolder organization.
Jumper Pro license key passed via header
Show child attributes
Directory to write exported clips to
Use stream copy (fast) vs re-encode
Export results
"3/3 clips exported successfully"
Was this page helpful?