gpt4 book ai didi

delphi - TWebBrowser 因嵌入 Youtube 剪辑而崩溃

转载 作者:行者123 更新时间:2023-12-03 15:07:51 26 4
gpt4 key购买 nike

这是我的代码:

type
TForm1 = class(TForm)
WebBrowser1: TWebBrowser;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
end;

implementation
uses ActiveX;

procedure TForm1.Button1Click(Sender: TObject); // method 1
var
HtmlFile: string;
begin
HtmlFile := ExtractFilePath(Application.ExeName) + 'test.html';
WebBrowser1.Navigate(HtmlFile);
end;

procedure LoadHtml(wb: TWebBrowser; HTMLStr: string);
var
aStream: TMemoryStream;
begin
wb.Navigate('about:blank'); // reset the webbrowser
while wb.ReadyState < READYSTATE_INTERACTIVE do // wait to load the empty page
Application.ProcessMessages;
if Assigned(wb.Document) then
begin
aStream := TMemoryStream.Create;
try
aStream.WriteBuffer(Pointer(HTMLStr)^, Length(HTMLStr));
aStream.Seek(0, soFromBeginning);
(wb.Document as IPersistStreamInit).Load(TStreamAdapter.Create(aStream));
finally
aStream.Free;
end;
end;
end;

procedure TForm1.Button2Click(Sender: TObject); // method 2
begin
LoadHtml(WebBrowser1,
'<html><head></head><body>'+
' <object width="640" height="390"> '+
' <param name="movie" value="http://www.youtube.com/v/L7NWdxFAHdY&hl=en_US&feature=player_embedded&version=3"> '+
' </param><param name="allowFullScreen" value="true"> '+
' </param><param name="allowScriptAccess" value="always"> '+
' </param><embed src="http://www.youtube.com/v/L7NWdxFAHdY&hl=en_US&feature=player_embedded&version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"> '+
' </embed></object> '+
'</body></html>'
);
end;

test.html

<object width="425" height="349">
<param name="movie" value="http://www.youtube.com/v/1hPxGmTGarM?version=3&amp;hl=iw_IL">
</param><param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/1hPxGmTGarM?version=3&amp;hl=iw_IL" type="application/x-shockwave-flash" width="425" height="349" allowscriptaccess="always" allowfullscreen="true">
</embed></object>

我的应用程序在两种方法中都会崩溃。我收到未处理的 win32 异常(由 Flash 播放器 Exception EInvalidOp in module Flash10u.ocx at 00108657. Invalid floating point operation 引起)。

  • 我在 D5、D7、D9 上尝试过此代码。
  • 我尝试重新导入 SHDocVw.dll。
  • 我还尝试使用 EmbeddedWB 控件而不是 TWebBroser...
  • Internet Explorer/Avant/Maxthon 对此 HTML 没有任何问题(均基于 IE ActiveX)。

有什么建议或修复吗?

我怎样才能捕捉到这个错误,甚至抑制它?

有没有办法通过 TWebBrowser 事件即时操作或更改 HTML,以便我可以显示图像而不是 Flash 播放器,就像广告拦截器的工作原理一样? (我的客户通过互联网在他们的网站上拥有该代码,并且我的 Delphi 应用程序提供了快速预览)

更新

我使用 TTimer 来启用/禁用 FPU(基于 Arjen 的想法):

function Get8087CW: Word; // for D5
asm
PUSH 0
FNSTCW [ESP].Word
POP EAX
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
Timer1.Enabled := False;
Timer1.Interval := 5000; // 5 sec
Saved8087CW := Get8087CW;
end;

procedure TForm1.WebBrowser1BeforeNavigate2(Sender: TObject;
const pDisp: IDispatch; var URL, Flags, TargetFrameName, PostData,
Headers: OleVariant; var Cancel: WordBool);
begin
Timer1.Enabled := False;
System.Set8087CW($133F); // Disable all fpu exceptions
end;

procedure TForm1.WebBrowser1DocumentComplete(Sender: TObject;
const pDisp: IDispatch; var URL: OleVariant);
begin
Timer1.Enabled := True;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
Timer1.Enabled := False;
Set8087CW(Saved8087CW);
end;
<小时/>

更新 (2)

我最终在应用程序启动时屏蔽了 FPU 异常。从那时起,我的申请就没有受到(已知的)影响。

最佳答案

更漂亮的解决方案:

Math.SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide, exOverflow,
exUnderflow, exPrecision]);

如果我正确阅读文档,Math.SetExceptionMask沉默每 exception提到过。

但是,它只是 @Arjen 方法的更干净、更美观的版本。

关于delphi - TWebBrowser 因嵌入 Youtube 剪辑而崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8200581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com