ffmpeg命令行

  • ffmpeg 如果要在linux gdb 调试,需要在configure 时候不优化 开启调试
bash 复制代码
./configure --enable-debug --disable-optimizations
make
  • 如何开启gdb 调试
bash 复制代码
 gdb ffmpeg_g
 set args -i test.hevc -c:v copy -c:a copy output_265.mp4
 r
  • h264 的流生成mp4 文件,不转码
bash 复制代码
ffmpeg -i test.hevc -c:v copy -c:a copy output_265.mp4
  • h265的码流生成mp4, 不转码
bash 复制代码
ffmpeg -i test.264 -c:v copy -c:a copy output_264.mp4
  • MP4 文件提取码流
bash 复制代码
ffmpeg -i test.mp4 -map 0:v:0 -c:v copy video.es

ffmpeg mp4 提取码流的c代码实现

相关推荐
Nightwish51 小时前
Oracle 数据库巡检检查清单
数据库·oracle·ffmpeg
luoyayun36113 小时前
Qt/QML + FFmpeg 实现多音频文件顺序拼接功能
qt·ffmpeg·音频拼接
wbcuc21 小时前
ffmpeg工具把m4s合并为mp4 powershell脚本
ffmpeg·m4s
luoyayun3612 天前
Qt + FFmpeg 实战:实现音频格式转换功能
qt·ffmpeg·音频格式转换
都在酒里3 天前
【极致低延时】香橙派部署 MediaMTX 实现 WebRTC 推流,延时仅 500-800ms,比局域网 ffmpeg 拉流快近 10 倍!(附踩坑全记录)
linux·arm开发·ffmpeg·webrtc·orangepi·嵌入式软件
Empty-Filled3 天前
用 Kap + FFmpeg 把录屏转成小体积 GIF:产品操作演示图制作实践
ffmpeg·kap
矜辰所致3 天前
嵌入式语音开发应用基础说明
ffmpeg·ai 语音·嵌入式语音·语音播放·语音采样
luoyayun3614 天前
Qt + FFmpeg 实战:音频静音段检测
qt·ffmpeg·音视频·静音段检测
小鹿研究点东西5 天前
直播带货长视频AI自动剪辑开播:一场直播如何反复利用?
ffmpeg·自动化·音视频·语音识别
luoyayun3616 天前
Qt + FFmpeg 实战:获取音视频文件基础属性、流信息和元数据
qt·ffmpeg·音视频·元数据·获取音视频文件属性