2

我尝试通过安装k-lite mega codec pack来使用directshowlib-2005。它找不到mp4文件或f4v文件的持续时间(avi、wmv和flv没有问题)。我使用directshowlib-2005 的ImediaSeeking接口来查找持续时间。但在 mp4 和 f4v 的情况下,GetDuration 方法返回零

我知道这是一个编解码器问题,但我不知道要安装哪个编解码器来获取 mp4 和 f4v 文件的持续时间。

我正在使用的代码如下所示:

static public bool GetVideoLength(string fileName, out long length)
    {
        DirectShowLib.FilterGraph graphFilter = new DirectShowLib.FilterGraph();
        DirectShowLib.IGraphBuilder graphBuilder;
        //DirectShowLib.IMediaPosition mediaPos=null;
        DirectShowLib.IMediaSeeking mediaPos;
        length = 4294967296;

        try
        {
            graphBuilder = (DirectShowLib.IGraphBuilder)graphFilter;
            graphBuilder.RenderFile(fileName, null);
            //mediaPos = (DirectShowLib.IMediaPosition)graphBuilder;
            mediaPos = (DirectShowLib.IMediaSeeking)graphBuilder;                
           // mediaPos.get_Duration(out length);
            mediaPos.GetDuration(out length);

            return true;
        }
        catch
        {
            return false;
        }
        finally
        {               
            mediaPos = null;
            graphBuilder = null;
            graphFilter = null;               

        }
    }

任何人都可以告诉我应该安装的确切编解码器来帮助我找到上面提到的持续时间吗?

4

1 回答 1

1

我只是使用MediaInfo。它也有一个 CLI,因此您可以从代码中调用它并获取此信息。它几乎可以处理各种编解码器和容器。

于 2010-11-12T03:30:30.887 回答