seek to time in mp4

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了seek to time in mp4相关的知识,希望对你有一定的参考价值。

参考技术A

播放mp4文件时,需要支持seek功能。mp4的帧信息分别记录在不同的box中,本文简单介绍了一下,给定时间,找出对应帧在mp4文件中的位置的计算方法。

一句话描述:由时间得到sample的索引,再由索引得到文件位置。
详细描述:

流程图如下:

在实际应用中,一般先根据mp4的头部信息,解析出各帧的属性并存储到表格中,方便后续使用。

How to Get the Length of File in C

How to get length of file in C

//===
int fileLen(FILE *fp)
{
    int nRet = -1;
    int nPosBak;

    nPosBak = ftell(fp);///< current position in file

    fseek(fp, 0, SEEK_END);
    nRet = ftell(fp);

    fseek(fp, nPosBak, SEEK_SET);///< write back position to file
    return nRet;
}

以上是关于seek to time in mp4的主要内容,如果未能解决你的问题,请参考以下文章

How to Get the Length of File in C

panic: time: missing Location in call to Time.In

How to prevent user to login second time when its already logged in.

1443. Minimum Time to Collect All Apples in a Tree

1443. Minimum Time to Collect All Apples in a Tree

努力优化 Rails WHERE NOT IN 在 Rails 中的查询