- 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