如何使用java小程序来屏蔽divx源(带有示例)?
例如,查看 ninjavideo 的 divx 播放器源代码。是这样的:
src="http://127.0.0.1:64651/nv/47244"
他们如何使用java小程序将src输出为divx可读文件?
来源:http://beta.ninjavideo.net/video/47244 警告:您需要允许 java applet
For example look at ninjavideo's divx player source. It is this:
src="http://127.0.0.1:64651/nv/47244"
How do they use the java applet to output the src as a divx readable file?
Source: http://beta.ninjavideo.net/video/47244
Warning: You will need to allow java applet
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它没有被“屏蔽”,只是作为本地 HTTP 代理运行。它从 HttpURLConnection 下载文件并在本地侦听连接并提供视频。这是一个(不太好)示例: 请帮我找出这个网络代理代码有什么问题
It's not "masked" it's just running as a local HTTP proxy. It downloads the file from a HttpURLConnection and listens locally for connections and serves up the video. Here's a (not so great) example: Please help me figure out what's wrong with this web proxy code