Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

fliz-ai-video-generatorfliz ai 视频生成器

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

58,440

周安装

2,435

GitHub Stars

1

下载量

19,480
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fliz-ai-video-generator(fliz ai 视频生成器)
来源仓库:https://github.com/jb-fliz/fliz-ai-video-generator
安装命令:
openclaw skills install fliz-ai-video-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install fliz-ai-video-generator

简介

Fliz REST API 的完整集成指南 - 一个人工智能驱动的视频生成平台,可将文本内容转换为带有画外音、人工智能生成的图像和字幕的专业视频。

  • 在以下情况下使用此技能:
  • - 创建与 Fliz API 的集成(WordPress、Zapier、Make、n8n、自定义应用程序)
  • - 通过 API 构建视频生成工作流程
  • - 实施用于视频完成通知的 webhook 处理程序
  • - 开发创建、管理或翻译视频的自动化工具
  • - 解决 Fliz API 错误或身份验证问题
  • - 了解视频处理步骤和状态轮询
  • 主要功能:从文本/摘要创建视频、视频状态监控、翻译、复制、语音/音乐列表、webhook 通知。

SKILL.md

name
fliz-ai-video-generator
version
1.0.0
author
gregorybeyrouti
description
|
homepage
https://fliz.ai
tags
[video, ai, fliz, content-creation, automation, api]
metadata
clawdbot
emoji
🎬
primaryEnv
FLIZ_API_KEY

Fliz API Integration Skill

Transform text content into AI-generated videos programmatically.

Quick Reference

ItemValue
Base URLhttps://app.fliz.ai
AuthBearer Token (JWT)
Get Tokenhttps://app.fliz.ai/api-keys
API Docshttps://app.fliz.ai/api-docs
FormatJSON

Authentication

All requests require Bearer token authentication:

curl -X GET "https://app.fliz.ai/api/rest/voices" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Test connection by calling GET /api/rest/voices - returns 200 if token is valid.

Core Endpoints

1. Create Video

POST /api/rest/video

Minimal request:

{
  "fliz_video_create_input": {
    "name": "Video Title",
    "description": "Full content text to transform into video",
    "format": "size_16_9",
    "lang": "en"
  }
}

Response:

{
  "fliz_video_create": {
    "video_id": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d"
  }
}
CRITICAL: The description field must contain the FULL TEXT content. Fliz does NOT extract content from URLs - upstream systems must fetch/process content first.

2. Get Video Status

GET /api/rest/videos/{id}

Poll this endpoint to track video generation progress. Check the step field:

StepStatus
pendingscrappingscriptimage_*speechvideo_renderingProcessing
complete✅ Ready - url field contains MP4
failed / failed_unrecoverable❌ Error - check error field
user_action⚠️ Requires manual intervention

3. List Videos

GET /api/rest/videos?limit=20&offset=0

4. Translate Video

POST /api/rest/videos/{from_video_id}/translate?new_lang=fr

Creates a new video in the target language.

5. Duplicate Video

POST /api/rest/videos/{from_video_id}/duplicate

6. List Voices / Musics

GET /api/rest/voices
GET /api/rest/musics

Video Creation Parameters

Required Fields

  • name (string): Video title
  • description (string): Full text content
  • format (enum): size_16_9 | size_9_16 | square
  • lang (string): ISO 639-1 code (en, fr, es, de, pt, etc.)

Optional Customization

FieldDescriptionDefault
categoryarticle \product \adarticle
script_styleNarrative styleauto
image_styleVisual stylehyperrealistic
caption_styleSubtitle styleanimated_background
caption_positionbottom \centerbottom
caption_fontFont familypoppins
caption_colorHex color (#FFFFFF)white
caption_uppercaseBooleanfalse
voice_idCustom voice IDauto
is_male_voiceBooleanauto
music_idMusic track IDauto
music_urlCustom music URLnull
music_volume0-10015
watermark_urlImage URLnull
site_urlCTA URLnull
site_nameCTA textnull
webhook_urlCallback URLnull
is_automaticAuto-processtrue
video_animation_modefull_video \hook_onlyfull_video
image_urlsArray of URLsnull
Note: For product and ad categories, image_urls is required (3-10 images).

For complete enum values, see references/enums-values.md.

Webhooks

Configure webhook_url to receive notifications when video is ready or fails:

{
  "event": "video.complete",
  "video_id": "a1b2c3d4-...",
  "step": "complete",
  "url": "https://cdn.fliz.ai/videos/xxx.mp4"
}

Error Handling

HTTP CodeMeaningAction
200SuccessContinue
400Bad RequestCheck params
401UnauthorizedInvalid/expired token
404Not FoundInvalid video ID
429Rate LimitedRetry with backoff
500Server ErrorRetry later

Integration Patterns

Polling Pattern (Recommended)

1. POST /api/rest/video → get video_id
2. Loop: GET /api/rest/videos/{id}
   - If step == "complete": done, get url
   - If step contains "failed": error
   - Else: wait 10-30s, retry

Webhook Pattern

1. POST /api/rest/video with webhook_url
2. Process webhook callback when received

Code Examples

See assets/examples/ for ready-to-use implementations:

  • python_client.py - Full Python wrapper
  • nodejs_client.js - Node.js implementation
  • curl_examples.sh - cURL commands
  • webhook_handler.py - Flask webhook server

Scripts

ScriptUsage
scripts/test_connection.pyValidate API key
scripts/create_video.pyCreate video from text file
scripts/poll_status.pyMonitor video generation
scripts/list_resources.pyFetch voices/musics

Run with: python scripts/<script>.py --api-key YOUR_KEY

Common Issues

"Invalid API response": Verify JSON structure matches documentation exactly.

Video stuck in processing: Check step field - some steps like user_action require manual intervention in Fliz dashboard.

No URL extraction: The API requires direct text input. Build content extraction into your integration.

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.98%
按下载量换算17,723

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills