AVFormat
FFmpeg 的 AVFormat 模块用来处理多媒体容器格式(Container Formats),其功能主要是复用 (Muxing)和解复用 (Demuxing)。
ffmpeg -i ./big-buck-bunny-1080p-30sec.mp4 -vcodec copy -an ./big-buck-bunny-1080p-30sec.h264
# -vcodec copy 直接原封不动 copy H.264 二进制压缩数据包
# -an Audio No 禁用音频
FFmpeg 的 AVFormat 模块用来处理多媒体容器格式(Container Formats),其功能主要是复用 (Muxing)和解复用 (Demuxing)。
ffmpeg -i ./big-buck-bunny-1080p-30sec.mp4 -vcodec copy -an ./big-buck-bunny-1080p-30sec.h264
# -vcodec copy 直接原封不动 copy H.264 二进制压缩数据包
# -an Audio No 禁用音频