💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[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 ```