企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 转换编码格式 指定编码器 ### 转成 H.264 的mp4 转成 H.264 编码 使用 libx264 编码器 ``` $ ffmpeg -i [input.file] -c:v libx264 output.mp4 ``` ### 转成 H.265 的mp4 ``` $ ffmpeg -i [input.file] -c:v libx265 output.mp4 ``` ## 转换容器格式 自动选择编码器 ``` ffmpeg -i input.mp4 -c copy output.webm ```