菜单
本页目录

下载

项目地址:https://github.com/wish2333/VideoExtractAndConcat

源码使用指南

  1. 安装python环境和第三方库pyside6。
pip install pyside6
pip install auto-editor
  1. 安装FFmpeg到main.py目录下。如需使用自动剪辑,安装第三方库auto-editor。文件树结构如下
├── FFmpeg        # 注意大写           
│   └── bin
│      └── ffmpeg.exe
│      └── ...
│   └── ...
├── Scripts     # 如使用嵌入式python推荐位于该层级
│   └── auto-editor.exe
│   └── ...
├── modules 
├── main.py     # 主程序
├── python.exe  # 如使用嵌入式python推荐位于该层级
├── ...      

可以不按上述文件树组织文件。

使用外部FFmpeg,需要在程序设置面板中手中点击设定ffmpeg/bin文件夹路径后重启程序。

使用外部Python或环境Python,需要在程序设置面板中手中点击设定特定Python文件夹下Scripts/auto-editor文件路径后重启程序。

  1. 运行main.py
python -m main.py

封装包使用指南

解压full安装包

  1. 如需自动剪辑模块先运行“0_安装自动剪辑模块.bat”(仅在第一次运行时)_
  2. 完成安装后,直接运行“1_start_with_console.bat”
  3. 程序第二次(第一次会识别失败,需重启)运行后在Setting界面确认FFmpeg和auto-editor路径,设置成功即可使用

解压lite安装包

  1. 先运行“0_先安装依赖.bat”(仅在第一次运行时)
  2. 把ffmpeg文件放入FFmpeg文件夹中(可选,若不选则需要手动设置结构为FFmpeg/bin/ffmpeg.exe)
  3. 运行“1_start_with_console.bat”,程序第二次运行后在Setting界面检查或设置FFmpeg和auto-editor路径,重启后使用