多媒体视频开发_(17) FFMPEG从MP4中提取h264裸流

mp4 原始文件 = 264裸流 + 音频流 + metadata

ffmpeg -i test.mp4 -codec copy -bsf: h264_mp4toannexb -f h264 output.264

ffmpeg -y -i test.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb output.mp4

说明:

-i test.mp4: 输入MP4文件

-codec copy: 从MP4封装中进行拷贝

-bsf:h264_mp4toannexb: 从MP4拷贝到annexB封装

-f h264: 采用264格式

output.264: 输出文件名

你可能感兴趣的:(多媒体开发)