传统短视频制作需要3-4小时,用MoneyPrinterTurbo只需3-5分钟。这不是概念demo,是79000+开发者验证的生产力工具。
MoneyPrinterTurbo是一个开源的AI短视频自动生成工具,输入一个主题,它能自动完成:
| 步骤 | 自动化内容 |
|---|---|
| 脚本生成 | 调用大模型(DeepSeek/OpenAI)自动撰写视频脚本 |
| 素材匹配 | 从Pexels/Pixabay自动搜索匹配的高清素材 |
| 语音合成 | 自动生成配音(支持多种音色) |
| 字幕添加 | 自动添加字幕和背景音乐 |
| 视频合成 | 一键输出成品MP4 |
```bash
docker pull harry0703/moneyprinterturbo
docker run -d -p 8501:8501 harry0703/moneyprinterturbo
```
打开 http://localhost:8501 即可使用Web界面。
```bash
git clone https://github.com/harry0703/MoneyPrinterTurbo.git
cd MoneyPrinterTurbo
python3 -m venv venv
source venv/bin/activate # Mac/Linux
pip install -r requirements.txt
cp config.example.toml config.toml
streamlit run app.py
```
```toml
[app]
video_source = "pexels" # 素材来源
[pexels]
api_key = "你的Pexels API Key" # 免费申请: pexels.com/api
[llm]
api_key = "sk-xxx"
base_url = "https://api.deepseek.com/v1"
model_name = "deepseek-chat"
[voice]
voice_name = "zh-CN-XiaoxiaoNeural" # 微软语音,中文女声
```
| 维度 | 评价 |
|---|---|
| 上手难度 | ⭐⭐⭐⭐⭐ 有手就行 |
| 视频质量 | ⭐⭐⭐ 中上(素材+配音决定上限) |
| 变现能力 | ⭐⭐⭐⭐⭐ 信息差红利期 |
| 可持续性 | ⭐⭐⭐ 竞争会加剧 |
*本文首发于「xAI智工场」公众号,专注AI应用落地,关注获取更多AI变现实操教程。*