本文介绍了使用NPAPI函数可以捕获flash播放器的媒体流URL吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想为Chrome制作视频下载面板喜欢Real Player的一个(DLL插件)。

我的问题是:

可以使用NPAPI函数,如
NPP_NewStream,NPP_StreamAsFile,NPP_DestroyStream ...捕获flash播放器的媒体流URL
如果不是,那么NPAPI的什么部分我必须使用?

I'm trying to make a video download panel for Chrome likes Real Player's one ( a DLL plugin )..
My question is :
"Is it possible to use NPAPI functions such asNPP_NewStream, NPP_StreamAsFile, NPP_DestroyStream... to catch the media stream URL of flash-player ? "If not, then what part of NPAPI do I have to use ?

推荐答案

使用NPAPI你不能神奇地窥探浏览器中的其他组件,流函数用于处理你自己的插件实例。

Using the NPAPI you can't magically spy on other components in the browser, the stream functions are for dealing with streams for your own plugin instance.

如果Flash播放器允许您使用脚本函数访问URL,则可以使用,以获得类似于使用JavaScript检索它的方式。

If the Flash player gives you access to the URL using scripting functions however, you can use the scripting extensions to get it similar to how you'd retrieve it using JavaScript.

这篇关于使用NPAPI函数可以捕获flash播放器的媒体流URL吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 18:36