Initial commit: WeChat bot project with AI chat, video export, and image upload scripts

This commit is contained in:
anqiang12
2026-06-18 15:53:24 +08:00
commit 3b1e106cb0
16 changed files with 2541 additions and 0 deletions

40
INSTALL_FFMPEG.md Normal file
View File

@@ -0,0 +1,40 @@
# 安装 ffmpeg
视频导出功能需要 ffmpeg 支持。请根据你的操作系统安装:
## Ubuntu/Debian
```bash
sudo apt update
sudo apt install -y ffmpeg
```
## CentOS/RHEL
```bash
sudo yum install -y epel-release
sudo yum install -y ffmpeg
```
## macOS
```bash
brew install ffmpeg
```
## Windows
1. 下载 ffmpeg: https://ffmpeg.org/download.html
2. 解压到目录,例如 `C:\ffmpeg`
3.`C:\ffmpeg\bin` 添加到系统 PATH 环境变量
## 验证安装
```bash
ffmpeg -version
ffprobe -version
```
## 已安装?
如果已经安装,请忽略此文档。