您的位置:首页 > 其它

[ffmpeg] play YUV/PCM with ffmpeg/ffplay

2016-08-08 15:09 495 查看
play raw video (YUV420 in this case):

ffplay -f rawvideo -pix_fmt yuv420p -video_size 1280x720 input_video.yuv


or alternatively

ffplay -f rawvideo -pixel_format yuv420p -video_size 1280x720 input_video.yuv


play raw audio (pcm: f32le in this case)

ffplay -f f32le -ac 1 -ar 48000 input_audio


where, -f is the pcm format; -ac is the audio channels; -ar is the audio sampling rate
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ffmpeg ffplay yuv