Delphi 使用 URLDownloadToFile 从 Internet 下载视频

发布于 2024-09-29 21:46:16 字数 618 浏览 4 评论 0原文

如何在Delphi中实现以下Windows函数?

HRESULT URLDownloadToFile(      
  LPUNKNOWN pCaller,
  LPCTSTR szURL,
  LPCTSTR szFileName,
  DWORD dwReserved,
  LPBINDSTATUSCALLBACK lpfnCB
);  

URLDownloadToFile 函数: http://msdn.microsoft.com/ en-us/library/ms775123(VS.85).aspx

提示我的问题是在这里提出的。

使用curlpp从youtube下载flv在卷曲之上 - 视频未播放

问候,Pieter。

How can I implement the following Windows function in Delphi?

HRESULT URLDownloadToFile(      
  LPUNKNOWN pCaller,
  LPCTSTR szURL,
  LPCTSTR szFileName,
  DWORD dwReserved,
  LPBINDSTATUSCALLBACK lpfnCB
);  

URLDownloadToFile Function: http://msdn.microsoft.com/en-us/library/ms775123(VS.85).aspx

The question that prompted me was asked here.

Downloading flv from youtube using curlpp on top of curl - video not playing

Regards, Pieter.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬シ愛 2024-10-06 21:46:16
uses
  URLMon, ShellApi;

function DownloadFile(SourceFile, DestFile: string): Boolean;
begin
  try
    Result := UrlDownloadToFile(nil, PChar(SourceFile), PChar(DestFile), 0, nil) = 0;
  except
    Result := False;
  end;
end;
uses
  URLMon, ShellApi;

function DownloadFile(SourceFile, DestFile: string): Boolean;
begin
  try
    Result := UrlDownloadToFile(nil, PChar(SourceFile), PChar(DestFile), 0, nil) = 0;
  except
    Result := False;
  end;
end;
万劫不复 2024-10-06 21:46:16

例如,如果没有头文件,我们就无法知道 LPBINDSTATUSCALLBACK 是什么。最好的方法是搜索是否有人已经对整个头文件进行了转换。如果没有,请尝试一些 C 到 Delphi 转换器 (http://www.drbob42.com/delphi/headconv.htm, http://cc.embarcadero.com/item/26951)。请注意,他们只能转换 60-80% 的代码,但希望您感兴趣的部分能够被转换。如果您仍然遇到困难,请搜索标头的 VB 转换。比从 C 转换要容易得多。

Without header file we can not know what is LPBINDSTATUSCALLBACK for example. The best approach is to google around if someone has already made a conversion of the whole header file. If there isn't one, then try some C to Delphi convertor (http://www.drbob42.com/delphi/headconv.htm, http://cc.embarcadero.com/item/26951). Beware that they can only convert 60-80% of the code, but hopefully part you are interested in will be converted. If you are still stuck after all this, then search for VB conversion of the header. It will be much easier then conversion from C.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文