FFmpeg获取视频时长方法

一般在视频文件写完后,视频的时长会写在视频的头文件内。因此,只需要通过ffmpeg读取文件操作就可以获取视频时长信息。

此工程所用ffmpeg版本号为4.0.1  下载地址:https://ffmpeg.zeranoe.com/builds/

#include
extern "C"{
#include
}


void main()
{
    AVFormatContext        *ifmt=NULL;

    avformat_network_init();
    ifmt=avformat_alloc_context();
    
    char* url="1.mp4";
    int ret=-1;
    ret=avformat_open_input(&ifmt,url,NULL,NULL);
    if(ret<0)
    {
        ret=-1;
        goto end;
    }

    ////显示输入流信息
    //printf("-----------rtsp流输入信息--------------\n");
    //av_dump_format(ifmt, 0, url,0);
    //printf("---------------------------------------\n");

    long tduration=ifmt->duration;         //这里获取的是微秒,需要转成秒

    printf("视频时长为%d秒\n",tduration/1000000);   


end:
    
    avformat_close_input(&ifmt);   //打开文件流后,需要关闭,否则会一直占用视频文件,无法进行视频文件的后续操作
    avformat_free_context(ifmt); 

    printf("ret=%d\n",ret);
    getchar();
}

工程下载地址:https://download.csdn.net/download/unfound/10558406

 

 

 

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