Metadata-Version: 2.4
Name: octopus-videomaster
Version: 0.1.4
Summary: Octopus video processing module
Author: Evan Bai
Requires-Python: >=3.11
Requires-Dist: build>=1.2.2.post1
Requires-Dist: click<8.2.0
Requires-Dist: ffmpeg-python>=0.2.0
Requires-Dist: moviepy>=1.0.3
Requires-Dist: opencv-python>=4.8.0
Requires-Dist: pydantic>=2.4.0
Requires-Dist: python-dotenv==1.0.1
Requires-Dist: rich==13.7.1
Requires-Dist: twine>=6.1.0
Requires-Dist: typer>=0.15.0
Description-Content-Type: text/markdown

# Octopus Video Master 视频处理器

## 安装
```shell
pip install octopus-videomaster
```

## 使用
```shell
ovm [process_video | info] video_path [--paramsters [parameter-value]] 
```

## Process Video子命令参数说明
|参数名|简称|数据类型|默认值|说明|
|------|------|------|------|------|
|--input_path|-|Path|-|输入文件完整路径|
|--output|-o|str|-|输出路径|
|--rotate|-r|float|0|旋转角度|
|--scale|-sc|float|0|缩放比例|
|--speed|-sp|float|1|播放速率比例|
|--fliph|-fh|bool|False|水平镜像|
|--flipv|-fv|bool|False|垂直镜像|
|--noise|-n|int|0|噪音|
|--blur|-b|int|0|模糊|
|--delete-frame|-df|int|0|抽帧|
|--insert-frame|-if|int|0|插帧|
|--insert-image|-ii|Path|-|插入图片|
|--log-level|-|str|INFO|日志级别|
