Initial commit: WeChat bot project with AI chat, video export, and image upload scripts
This commit is contained in:
40
INSTALL_FFMPEG.md
Normal file
40
INSTALL_FFMPEG.md
Normal 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
|
||||
```
|
||||
|
||||
## 已安装?
|
||||
|
||||
如果已经安装,请忽略此文档。
|
||||
Reference in New Issue
Block a user