cut_audio_segment
Extract a specific segment from an audio file using start time and either end time or duration.
Instructions
切割音频片段
Args:
input_path: 输入音频文件路径
start_time: 开始时间(格式:HH:MM:SS)
end_time: 结束时间(格式:HH:MM:SS,与duration二选一)
duration: 持续时间(格式:HH:MM:SS,与end_time二选一)
output_path: 输出音频文件路径(可选)
Returns:
切割结果信息Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input_path | Yes | ||
| start_time | Yes | ||
| end_time | No | ||
| duration | No | ||
| output_path | No |