当前位置: 首页 > 工具软件 > ffmpeg x > 使用案例 >

FFmpeg之x264/x265转码去掉B帧(二十六)

宋伟泽
2023-12-01
1.avc转hevc转码默认带B帧
# ffmpeg -i guomei_avc.mp4 -c:v libx265 has_b_frame.h265
# ffmpeg -i guomei_avc.mp4 -c:v libx265 has_b_frame.mp4

2.avc转码hevc去掉B帧
# ffmpeg -i guomei_avc.mp4 -c:v libx265 -preset ultrafast -x265-params "bframes=0"  no_b_frame.h265

3.avc去掉B帧
# ffmpeg -i guomei_avc.mp4 -vcodec libx264 -x264opts "bframes=0" h264_no_b.h264
# ffmpeg -i guomei_avc.mp4 -vcodec libx264 -x264opts "bframes=0" h264_no_b.mp4




 

 类似资料: