NAV
VideoEditorAI.com
shell python php javascript

介绍

欢迎使用 VideoEditorAI.com 平台 API!

每项功能都旨在帮助我们的用户在 VideoEditorAI.com 系统上更轻松地使用 AI 创建或编辑视频。

要获取您的 API 密钥,请转至<a href="/signup/">帐户页面</a>。

默认基本 URL

VideoEditorAI.com API 的默认基本 URL 为:https: <b>//api.videoeditorai.com/v1/</b>

注意:出于安全原因,所有 VideoEditorAI.com API 均仅通过 HTTPS 提供服务。

授权

要使用 VideoEditorAI.com API,您需要链接到您的帐户的API 密钥。

授权值应在标头请求中发送。

Authorization: <api_key>

创建视频

Copy to Clipboard
创建视频 curl -X POST \ https://api.videoeditorai.com/v1/create-video/ \ -H 'Authorization: api_key' \ -H 'Content-Type: application/json' \ -d '{ "terms": "霸王龙恐龙在丛林中奔跑", "is_sfw": true }' 获取结果网址 curl -X POST \ https://api.videoeditorai.com/v1/results/ \ -F 'uuid=response_uuid'

回复

Copy to Clipboard
/path/to/local/result.jpg

HTTP请求

POST /create-video/

查询参数

范围 类型 描述 例子
terms 必需的 告诉人工智能你想创建什么视频。 霸王龙恐龙在丛林中奔跑
is_sfw 选修的 如果“条款”适用于成人视频内容,则设置"true" true 或者 false

编辑视频

Copy to Clipboard
编辑视频 curl -X POST \ https://api.videoeditorai.com/v1/edit-video/ \ -H 'Authorization: api_key' \ -F 'files=@test_files/test.jpeg' \ -F 'terms=打造梵高星夜' \ -F 'is_sfw=true' Get result video curl -X POST \ https://api.videoeditorai.com/v1/results/ \ -F 'uuid=response_uuid'

回复

Copy to Clipboard
/path/to/local/result.jpg

HTTP请求

POST /edit-video/

查询参数

范围 类型 描述 例子
terms 必需的 根据您的视频告诉人工智能您想要什么。 打造梵高星夜
is_sfw 选修的 如果“条款”适用于成人视频内容,则设置"true" true 或者 false