17174e2cf5
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m52s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m57s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 3m43s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 3m45s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 5m26s
CI/CD Pipeline / Validate - Code Quality (push) Successful in 6m44s
CI/CD Pipeline / Integration Tests (push) Successful in 2m12s
CI/CD Pipeline / Unit Tests (push) Successful in 9m0s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / CI Gate (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 12m38s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 32s
CI/CD Pipeline / ACR Image Cleanup (push) Successful in 39s
CI/CD Pipeline / Staging E2E Tests (push) Failing after 1m14s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 2m50s
CI/CD Pipeline / Canary Release to Production (push) Has been skipped
Co-authored-by: xiaoxia <dev@xiaoxiajianji.com> Co-committed-by: xiaoxia <dev@xiaoxiajianji.com>
36 lines
833 B
TypeScript
36 lines
833 B
TypeScript
import apiClient from "../client"
|
|
|
|
export interface GenerateCoverRequest {
|
|
asset_ids: string[]
|
|
cover_type?: "ai_frame" | "manual" | "upload" | "ai_regenerate"
|
|
frame_time?: number
|
|
}
|
|
|
|
export interface GenerateCoverResponse {
|
|
plan_id: string
|
|
cover: {
|
|
scheme?: string
|
|
asset_id?: string
|
|
frame_time?: number
|
|
image_url?: string
|
|
thumbnail_url?: string
|
|
[key: string]: unknown
|
|
}
|
|
}
|
|
|
|
/** AI 生成封面 — 从预览视频中抽帧 */
|
|
export async function generateCover(
|
|
templateId: string,
|
|
data: GenerateCoverRequest,
|
|
): Promise<GenerateCoverResponse> {
|
|
const response = await apiClient.post<GenerateCoverResponse>(
|
|
"/generation/generate-cover",
|
|
{ ...data, template_id: templateId },
|
|
{
|
|
timeout: 300000,
|
|
params: { template_id: templateId },
|
|
},
|
|
)
|
|
return response.data
|
|
}
|