经 AI Skill Hub 精选评估,Open-Generative-AI — AI 视频生成工具中文文档 获评「强烈推荐」。在 GitHub 上收获超过 16.6k 颗 Star,这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 9.4 分,适合有一定技术背景的用户使用。
Open-Generative-AI — AI 视频生成工具中文文档 是一款基于 JavaScript 开发的开源工具,专注于 ai-art-generator、ai-image-generation、ai-video-generation 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
Open-Generative-AI — AI 视频生成工具中文文档 是一款基于 JavaScript 开发的开源工具,专注于 ai-art-generator、ai-image-generation、ai-video-generation 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g open-generative-ai # 方式二:npx 直接运行(无需安装) npx open-generative-ai --help # 方式三:项目依赖安装 npm install open-generative-ai # 方式四:从源码运行 git clone https://github.com/Anil-matcha/Open-Generative-AI cd Open-Generative-AI npm install npm start
# 命令行使用
open-generative-ai --help
# 基本用法
open-generative-ai [options] <input>
# Node.js 代码中使用
const open_generative_ai = require('open-generative-ai');
const result = await open_generative_ai.run(options);
console.log(result);
# open-generative-ai 配置说明 # 查看配置选项 open-generative-ai --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export OPEN_GENERATIVE_AI_CONFIG="/path/to/config.yml"
git clone --recurse-submodules https://github.com/Anil-matcha/Open-Generative-AI.git cd Open-Generative-AI
Hosted version: https://muapi.ai/open-generative-ai
Use all four studios (Image, Video, Lip Sync, Cinema) directly in your browser — no Node.js, no setup. Sign up for a free account to start generating. The hosted version is always up to date with the latest models.
Follow the creator for updates
---
Because the app is not notarized by Apple, macOS Gatekeeper will block it on first launch. Follow these steps:
Step 1 — Mount the DMG and drag the app to /Applications
Step 2 — Open Terminal and run:
xattr -cr "/Applications/Open Generative AI.app"
Step 3 — Right-click the app in /Applications → click Open → click Open again on the dialog
You only need to do this once. After that, the app opens normally.
Alternative (no Terminal): 1. Try to open the app — macOS will block it 2. Go to System Settings → Privacy & Security 3. Scroll down to find "Open Generative AI was blocked" 4. Click Open Anyway → Open
Windows SmartScreen may show a warning because the installer is not code-signed:
The app will install silently to %LocalAppData% with a Start Menu shortcut.
Linux artifacts are available when building with Electron Builder:
```bash
npm run electron:build:linux
Generated files are written to the `release/` folder:
- **AppImage** — portable, run directly after making executable:
bash chmod +x "release/Open Generative AI-.AppImage" ./release/Open\ Generative\ AI-.AppImage - **.deb** — install on Debian/Ubuntu:
bash sudo apt install ./release/open-generative-ai_*_amd64.deb
If AppImage fails to start on older systems, install `libfuse2`:
bash sudo apt install libfuse2
#### Ubuntu 24.04+ / AppArmor sandbox restriction
Ubuntu 24.04 and later enable a kernel security policy (`apparmor_restrict_unprivileged_userns`) that blocks Chromium's user-namespace sandbox. If the app fails to start silently or crashes immediately, you have two options:
**Option A — Recommended: install the `.deb` instead.**
The `.deb` package ships an AppArmor profile that grants the required permission automatically on install with no system-wide changes.
**Option B — Temporary system fix (AppImage users):**bash sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 This lasts until next reboot. To make it permanent:bash echo 'kernel.apparmor_restrict_unprivileged_userns=0' | sudo tee /etc/sysctl.d/99-userns.conf ```
---
Open Generative AI is a free, open-source AI image, video, cinema, and lip sync studio that brings creative workflows to everyone. No content filters, no prompt rejections, no guardrails — just full creative freedom. Powered by Muapi.ai, it supports text-to-image, image-to-image, text-to-video, image-to-video, and audio-driven lip sync generation across models like Flux, Nano Banana, Midjourney, Kling, Sora, Veo, Seedream, Infinite Talk, LTX Lipsync, Wan 2.2, and more — all from a sleek, modern interface you can self-host and customize.
Why Open Generative AI instead of other AI Video Platforms? - No filters — no content filters, no nanny guardrails, no prompt rejections - Free & open-source — no subscription, no vendor lock-in - Self-hosted — your data stays on your machine, full creative control - 200+ models — text-to-image, image-to-image, text-to-video, image-to-video, lip sync - Multi-image input — feed up to 14 reference images into compatible models - Lip Sync Studio — animate portraits or sync lips to any audio with 9 dedicated models - Extensible — add your own models, modify the UI, build on top of it
For a deep dive into the technical architecture and the philosophy behind the "Infinite Budget" cinema workflow, see our comprehensive guide and roadmap.
Most users want the desktop app, not this dev path. If you just want to run Open Generative AI on your machine, download a prebuilt installer instead — no Node.js required. The instructions below are for contributors building from source.
Pick the entry point that matches your goal:
npm run electron:devnpm run dev```bash
npm run build
npm run start
Build native desktop apps with Electron:
```bash
npm run electron:build:win
The app communicates with Muapi.ai using a two-step pattern:
POST /api/v1/{model-endpoint} with prompt and parametersGET /api/v1/predictions/{request_id}/result until status is completedAuthentication uses the x-api-key header. During development, a Vite proxy handles CORS by routing /api requests to https://api.muapi.ai.
File uploads use POST /api/v1/upload_file (multipart/form-data) and return a hosted URL that is passed to image-conditioned models. For multi-image models the full images_list array is forwarded to the API in one request.
Lip sync jobs use the same two-step pattern: a dedicated processLipSync() method accepts image_url or video_url alongside audio_url, dispatches to the model's endpoint, and polls until the output video URL is available.
The Workflow Studio lets you build and run multi-step AI pipelines without writing code.
Key capabilities: - Templates — Start from pre-built workflows (image chains, video pipelines, and more) - My Workflows — Save and manage your own custom pipelines - Community — Browse and run workflows published by other users - Node-based Builder — Drag-and-drop visual editor to connect models and route outputs between steps - Playground — Run any workflow interactively with a form UI; results render inline - API execution — Every workflow is also callable via the Muapi API
💡 Want to add workflows to your own app? Check out Vibe Workflow — the open-source workflow engine powering this feature. Drop it into any project.
The free, open-source alternative to AI Video Platforms. Generate AI images and videos using 200+ state-of-the-art models — no content filters, no closed ecosystem, no subscription fees.
Community: Join Reddit & Discord for discussions and support
Latest Gemini Omni model from Google best prompts and resources: Gemini Omni Resources
🤖 Automate media generations with AI coding agents: Generative-Media-Skills — a library of skills that let agents like Claude Code, Codex, and other coding assistants drive 200+ image/video models end-to-end (prompt → generate → edit → stitch) directly from your terminal. Perfect for building automated media pipelines without touching a UI.
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
AI Skill Hub 点评:Open-Generative-AI — AI 视频生成工具中文文档 的核心功能完整,质量优秀。对于AI 技术爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | Open-Generative-AI |
| 原始描述 | Open-source alternative to AI video platforms — Free AI image & video generation studio with 200+ models (Flux, Midjourney, Kling, Sora, Veo). No content filters. Self-hosted, MIT licensed. |
| Topics | ai-art-generatorai-image-generationai-video-generationcreative-toolsflux-1generative-aivideo |
| GitHub | https://github.com/Anil-matcha/Open-Generative-AI |
| 语言 | JavaScript |
收录时间:2026-05-22 · 更新时间:2026-05-22 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。