4、FFmpeg命令行操作5

ffplay命令播放

名称

指令

播放本地文件

ffplay -window_title "test time" -ss 2 -t 10 -autoexit test.mp4 

ffplay buweishui.mp3 

播放网络流

ffplay -window_title "rtmp stream" rtmp://202.69.69.180:443/webcast/bshdlive-pc 

mpeg4解码器

ffplay  -vcodec mpeg4 test.mp4 

h264解码器

ffplay -vcodec h264 test.mp4

禁用音频

ffplay test.mp4 -an 

禁用视频

ffplay test.mp4 -vn

播放YUV数据

ffplay -pixel_format yuv420p -video_size 320x240 -framerate 5  yuv420p_320x240.yuv 

播放RGB数据 

ffplay -pixel_format rgb24 -video_size 320x240 -i rgb24_320x240.rgb 

ffplay -pixel_format rgb24 -video_size 320x240 -framerate 5  -i rgb24_320x24

你可能感兴趣的:(音视频,ffmpeg)