Генерация видео
Создаёт задачу генерации видео по текстовому описанию.
Возвращает task_id, по которому затем нужно опросить
/v1/videos/fetch.
curl --request POST \
--url https://api.nixai.ru/v1/videos/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": [
"https://example.com/first.jpg",
"https://example.com/last.jpg"
],
"type": "i2v",
"videos": [
"https://example.com/source.mp4"
]
}
'import requests
url = "https://api.nixai.ru/v1/videos/generations"
payload = {
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": ["https://example.com/first.jpg", "https://example.com/last.jpg"],
"type": "i2v",
"videos": ["https://example.com/source.mp4"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'omni-flash',
prompt: 'Красивый закат над морем',
duration: 8,
aspect_ratio: '16:9',
resolution: '1080p',
images: ['https://example.com/first.jpg', 'https://example.com/last.jpg'],
type: 'i2v',
videos: ['https://example.com/source.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.nixai.ru/v1/videos/generations';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'omni-flash',
prompt: 'Красивый закат над морем',
duration: 8,
aspect_ratio: '16:9',
resolution: '1080p',
images: ['https://example.com/first.jpg', 'https://example.com/last.jpg'],
type: 'i2v',
videos: ['https://example.com/source.mp4']
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nixai.ru/v1/videos/generations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => 'omni-flash',
'prompt' => 'Красивый закат над морем',
'duration' => 8,
'aspect_ratio' => '16:9',
'resolution' => '1080p',
'images' => [
'https://example.com/first.jpg',
'https://example.com/last.jpg'
],
'type' => 'i2v',
'videos' => [
'https://example.com/source.mp4'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.nixai.ru/v1/videos/generations"
payload := strings.NewReader("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.nixai.ru/v1/videos/generations")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nixai.ru/v1/videos/generations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}"
response = http.request(request)
puts response.read_body$headers=@{}
$headers.Add("Authorization", "Bearer <token>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.nixai.ru/v1/videos/generations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": [
"https://example.com/first.jpg",
"https://example.com/last.jpg"
],
"type": "i2v",
"videos": [
"https://example.com/source.mp4"
]
}'import Foundation
let parameters = [
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": ["https://example.com/first.jpg", "https://example.com/last.jpg"],
"type": "i2v",
"videos": ["https://example.com/source.mp4"]
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.nixai.ru/v1/videos/generations")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'omni-flash',
prompt: 'Красивый закат над морем',
duration: 8,
aspect_ratio: '16:9',
resolution: '1080p',
images: ['https://example.com/first.jpg', 'https://example.com/last.jpg'],
type: 'i2v',
videos: ['https://example.com/source.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}")
val request = Request.Builder()
.url("https://api.nixai.ru/v1/videos/generations")
.post(body)
.addHeader("Authorization", "Bearer <token>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute()falsefalse{
"task_id": "video_db242923-11eb-44dc-bddf-d71a02ab5174"
}Authorizations
Заголовок авторизации вида Bearer <token>, где <token> — ваш API-ключ.
Body
Идентификатор видео-модели.
veo-3.1-lite, veo-3.1-fast, veo-3.1-quality, omni-flash "omni-flash"
Текстовое описание желаемого видео.
"Красивый закат над морем"
Длительность видео в секундах. Необязательный параметр,
по умолчанию 8.
omni-flash— допустимые значения:4,6,8,10veo-3.1-lite,veo-3.1-fast,veo-3.1-quality— только8
4, 6, 8, 10 8
Соотношение сторон видео. Необязательный параметр,
по умолчанию 16:9.
16:9, 9:16 "16:9"
Разрешение видео. Необязательный параметр,
по умолчанию 720p. Поддерживается всеми моделями.
720p, 1080p "1080p"
Список URL изображений для генерации видео на их основе.
Поведение зависит от параметра type:
- при
i2vпервая картинка задаёт первый кадр, вторая — последний (можно передать до двух картинок); - при
r2vкартинки используются как референс.
[ "https://example.com/first.jpg", "https://example.com/last.jpg" ]
Режим генерации. Обязателен, если передан список images или videos.
i2v— по кадрам: первая картинка — первый кадр, вторая — последний;r2v— по референсу;video-edit— редактирование исходных видео из спискаvideos. Доступно только для моделиomni-flash.
i2v, r2v, video-edit "i2v"
Список URL исходных видео для редактирования. Обязателен и используется
только при type: video-edit. Можно передать строго одно видео.
Поддерживается только моделью omni-flash. При type: video-edit
параметры duration и aspect_ratio передавать не нужно.
["https://example.com/source.mp4"]
Response
Задача создана
Идентификатор задачи для последующего опроса через fetch.
"video_db242923-11eb-44dc-bddf-d71a02ab5174"
Was this page helpful?
curl --request POST \
--url https://api.nixai.ru/v1/videos/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": [
"https://example.com/first.jpg",
"https://example.com/last.jpg"
],
"type": "i2v",
"videos": [
"https://example.com/source.mp4"
]
}
'import requests
url = "https://api.nixai.ru/v1/videos/generations"
payload = {
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": ["https://example.com/first.jpg", "https://example.com/last.jpg"],
"type": "i2v",
"videos": ["https://example.com/source.mp4"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'omni-flash',
prompt: 'Красивый закат над морем',
duration: 8,
aspect_ratio: '16:9',
resolution: '1080p',
images: ['https://example.com/first.jpg', 'https://example.com/last.jpg'],
type: 'i2v',
videos: ['https://example.com/source.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.nixai.ru/v1/videos/generations';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'omni-flash',
prompt: 'Красивый закат над морем',
duration: 8,
aspect_ratio: '16:9',
resolution: '1080p',
images: ['https://example.com/first.jpg', 'https://example.com/last.jpg'],
type: 'i2v',
videos: ['https://example.com/source.mp4']
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nixai.ru/v1/videos/generations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => 'omni-flash',
'prompt' => 'Красивый закат над морем',
'duration' => 8,
'aspect_ratio' => '16:9',
'resolution' => '1080p',
'images' => [
'https://example.com/first.jpg',
'https://example.com/last.jpg'
],
'type' => 'i2v',
'videos' => [
'https://example.com/source.mp4'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.nixai.ru/v1/videos/generations"
payload := strings.NewReader("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.nixai.ru/v1/videos/generations")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nixai.ru/v1/videos/generations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}"
response = http.request(request)
puts response.read_body$headers=@{}
$headers.Add("Authorization", "Bearer <token>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.nixai.ru/v1/videos/generations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": [
"https://example.com/first.jpg",
"https://example.com/last.jpg"
],
"type": "i2v",
"videos": [
"https://example.com/source.mp4"
]
}'import Foundation
let parameters = [
"model": "omni-flash",
"prompt": "Красивый закат над морем",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "1080p",
"images": ["https://example.com/first.jpg", "https://example.com/last.jpg"],
"type": "i2v",
"videos": ["https://example.com/source.mp4"]
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.nixai.ru/v1/videos/generations")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'omni-flash',
prompt: 'Красивый закат над морем',
duration: 8,
aspect_ratio: '16:9',
resolution: '1080p',
images: ['https://example.com/first.jpg', 'https://example.com/last.jpg'],
type: 'i2v',
videos: ['https://example.com/source.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"model\": \"omni-flash\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 8,\n \"aspect_ratio\": \"16:9\",\n \"resolution\": \"1080p\",\n \"images\": [\n \"https://example.com/first.jpg\",\n \"https://example.com/last.jpg\"\n ],\n \"type\": \"i2v\",\n \"videos\": [\n \"https://example.com/source.mp4\"\n ]\n}")
val request = Request.Builder()
.url("https://api.nixai.ru/v1/videos/generations")
.post(body)
.addHeader("Authorization", "Bearer <token>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute()falsefalse{
"task_id": "video_db242923-11eb-44dc-bddf-d71a02ab5174"
}