美文网首页
FFmpeg 命令行工具ffprobe

FFmpeg 命令行工具ffprobe

作者: huisedediao | 来源:发表于2018-09-30 09:03 被阅读0次

    查看音视频文件的基本信息:

    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
    

    相关文章

      网友评论

          本文标题:FFmpeg 命令行工具ffprobe

          本文链接:https://www.haomeiwen.com/subject/zkbioftx.html