C
crazyjimmy
Unregistered / Unconfirmed
GUEST, unregistred user!
D7+DsPack2.34做了个播放器,循环播放媒体文件(视音频文件都有),装了klcodec263s.exe的解码器包,使用TFilterGraph和TVideoWindow控件。
播放代码如下:
procedure TMainFrm.FilterGraphGraphComplete(sender: TObject;
Result: HRESULT;
Renderer: IBaseFilter);
var
begin
if not FilterGraph.Active then
FilterGraph.Active := true;
FilterGraph.ClearGraph;
FilterGraph.RenderFile(filename);
VideoWindow.visible:=true;
FilterGraph.Volume:=10000;
FilterGraph.Play;
end;
播放到有些文件就会报错,不知道什么原因?不兼容?
播放代码如下:
procedure TMainFrm.FilterGraphGraphComplete(sender: TObject;
Result: HRESULT;
Renderer: IBaseFilter);
var
begin
if not FilterGraph.Active then
FilterGraph.Active := true;
FilterGraph.ClearGraph;
FilterGraph.RenderFile(filename);
VideoWindow.visible:=true;
FilterGraph.Volume:=10000;
FilterGraph.Play;
end;
播放到有些文件就会报错,不知道什么原因?不兼容?