我可以在 Applet 中使用 vlcj 库吗?
如果我需要 Program_Files 中用户 VLC 文件夹中的 libvlc.dll,如何使用 vlcj-1.2.0 在小程序中播放视频文件?
我可以从小程序加载本机库吗?或者我可以使用 Firefox VLC 插件吗? 或者您知道其他解决方案吗?
How can I use vlcj-1.2.0 to play a video file in an applet if I need libvlc.dll from user's VLC folder in Program_Files?
Can I load the native library from the applet? Or can I use the firefox VLC plugin?
Or do you know any other solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在小程序中包含本机库(只要您有 libvlc.dll/so 和相关插件,就不需要安装 VLC 来使用 vlcj),那么您应该能够使用它,但前提是它已签名。
如果您只想在服务器上播放视频,一个更简单的解决方案是将所有视频保存为 FLV,然后使用 flash 播放它们。或者coruse的HTML5!
If you include the native library with the applet (you don't need VLC installed to use vlcj as long as you have libvlc.dll/so and associated plugins) then you should be able to use it, but only if it's signed.
If you just want to play video on the server though, a much simpler solution would be to save all the videos as FLV and then use flash to play them back. Or HTML5 of coruse!