一、保留封装格式
1. 保留原始的音频流封装格式
ffmpeg -i test.mp4 -acodec copy -vn audio.mp4
2. 保留原始的视频流封装格式
ffmpeg -i test.mp4 -vcodec copy -an video.mp4
二、提取视频
1. 保留编码格式
ffmpeg -i test.mp4 -vcodec copy -an test_copy.h264
2. 强制格式
ffmpeg -i test.mp4 -vcodec libx264 -an test.h264
三、提取音频
1. 保留编码格式
ffmpeg -i test.mp4 -acodec copy -vn test.aac
2. 强制格式
ffmpeg -i test.mp4 -acodec libmp3lame -vn test.mp3