Как использовать dspack в проекте firemonkey - PullRequest
0 голосов
/ 21 октября 2018

Отображать видео с помощью DSPack в Project VCL просто:

procedure TForm1.Button1Click(Sender: TObject);
begin
if OpenDialog1.Execute then
begin
if not FilterGraph1.Active then FilterGraph1.Active:= True;
FilterGraph1.RenderFile(OpenDialog1.Filename);
FilterGraph1.Play;
end;
end;

Печать

Но в firemonkey на вкладке dspack нет TVideoWindow.

Как отобразить видео в firemonkey с помощью dspack?

...