我一直在玩 DSPack,它可以播放 avi 和 wmv 文件,但不能播放 mp4 文件。我已经安装了 ffdshow 编解码器,但它仍然不会播放任何其他格式。我在某处读到我需要使用 ffdshow 过滤器,但是关于如何使用的文档非常有限......有人可以帮我吗?
编辑
那是我在播放任何其他格式时遇到的错误
raised exception class EDirectShowException with message 'C ($80040265).'. Process stopped. Use Step or Run to continue.
这就是弹出异常的函数
function CheckDSError(HR: HRESULT): HRESULT;
var Excep: EDirectShowException;
begin
Result := HR;
if Failed(HR) then
begin
Excep := EDirectShowException.Create(format(GetErrorString(HR)+' ($%x).',[HR]));
Excep.ErrorCode := HR;
raise Excep;
end;
end;
编辑 我安装了 haali 解复用器,安装后它是一个自我安装程序,我仍然得到同样的错误。和gdcl解复用器,那是两个dll文件,关于如何使用它们有什么建议吗?
PS:我从来没有使用过编解码器和/或这种东西,很抱歉这么厚,我使用的是 Windows 7 x64