查看音视频文件的基本信息:
ffprobe 文件路径
例子:ffprobe ~/Desktop/11111.mp3
查看格式信息:
ffprobe -show_format 文件路径
例子:ffprobe -show_format ~/Desktop/11111.mp3
以json格式输出具体每一个流最详细的信息:
ffprobe -print_format json -show_streams 文件路径
例子:ffprobe -print_format json -show_streams ~/Desktop/11111.mp3
显示帧信息:
ffprobe -show_frames 文件路径
例子:ffprobe -show_frames ~/Desktop/11111.mp3
查看包信息:
ffprobe -show_packets 文件路径
例子:ffprobe -show_packets ~/Desktop/11111.mp3
网友评论