Linux 下ffmpeg视频转码实战三——ffprobe

目的很简单 看参数

命令行:

./ffprobe -print_format json -show_format -show_streams -i ./a.mp4

其中:  

-print_format json(以json格式输出), 
-show_format(输出封装格式信息),
-show_streams(输出流信息),
-i ./a.mp4(输入文件)


输出一屏幕,去找吧。

你可能感兴趣的:(ffprobe)