ffmpeg 命令提取音视频数据-ffmpeg导出h265裸流-ffmpeg导出h264裸流

1.保留封装格式


ffmpeg -i test.mp4 -acodec copy -vn audio.mp4
ffmpeg -i test.mp4 -vcodec copy -an video.mp4

2.提取视频

保留编码格式:

ffmpeg -i test.mp4 -vcodec copy -an test_copy.h264

强制格式:

ffmpeg -i test.mp4 -vcodec libx264 -an test.h264
ffmpeg -i test.mp4 -vcodec libx265 -an test.h265
ffmpeg -i 1920x1080.mp4 -vcodec libx265  -preset ultrafast -x265-params "bframes=0"  out.h265  #去除B帧

3.提取音频

保留编码格式

ffmpeg -i test.mp4 -acodec copy -vn test.aac

强制格式

ffmpeg -i test.mp4 -acodec libmp3lame -vn test.mp3
posted @ 2022-02-22 09:58  simp00  阅读(966)  评论(0编辑  收藏  举报