我想学习 CEF4Delphi 组件,但遇到了一个问题。CEF4Delphi 不会播放 YouTube 网站上的所有视频。普通视频正常播放,但没有直播。请我帮助解决这个问题。(使用:Delphi - Rad Studio 10.1 Berlin)。我为英语道歉。我用机器翻译谷歌。
program Project2;
uses
Vcl.Forms,
WinApi.Windows,
uCEFApplication,
Unit2 in 'Unit2.pas' {Form2};
{$R *.res}
{$SETPEFLAGS IMAGE_FILE_LARGE_ADDRESS_AWARE}
begin
GlobalCEFApp := TCefApplication.Create;
if GlobalCEFApp.StartMainProcess then
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm2, Form2);
Application.Run;
end;
GlobalCEFApp.Free;
end.
.
procedure TForm2.Button1Click(Sender: TObject);
begin
Chromium1.LoadURL('https://www.youtube.com/watch?v=dI4jr5HyuT0');
end;
procedure TForm2.FormCreate(Sender: TObject);
begin
Chromium1.CreateBrowser(CEFWindowParent1);
end;