# meditor **Repository Path**: fastiot/meditor ## Basic Information - **Project Name**: meditor - **Description**: 多媒体文件编辑工具 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2024-08-22 - **Last Updated**: 2024-08-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # meditor meditor = media + editor 多媒体文件编辑工具(命令行): - audiocut 音频文件剪切 - videocut 视频文件剪切 - audiomerge 音频文件合并 ## 用法 1. 将 meditor 目录添加至系统环境变量 Path 2. 在待操作的多媒体文件目录下打开命令行,执行对应的命令操作 例: - 剪切 demo.mp3 其中第10~15秒间的片段 `$ audiocut -i demo.mp3 -s 00:10 -e 00:15` - 剪切 demo.mp4 其中第5~10分钟的片段, 并命名为 foobar.mp4 `$ videocut -i demo.mp4 -s 5:00 -e 10:00 -o foobar.mp4` - 合并 1.mp3, 2.mp3, 3.mp3 `$ audiomerge -i 1.mp3 2.mp3 3.mp3 -o 123.mp3` - 查看帮助 `$ audiocut -h` `$ videocut -h` `$ audiomerge -h`