【FFMPEG】7. ffmpeg命令提取音视频数据

一、保留封装格式

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

 

 

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章