有关"https://stackoverflow.com/ questions/10264416/Spreating-Victory-in-play-framework-useing-vicolualjs >在游戏框架中使用视频 Streaming视频,我想知道用游戏控制器播放视频的最佳方式。
我把我的视频存储在文件系统上,而且由于不是每个用户都允许观看每个视频,所以我想限制使用控制器访问。所以我的问题是,我怎样才能将视频从控制器内部传送到客户端(运行视频)?
谢谢!
有关"https://stackoverflow.com/ questions/10264416/Spreating-Victory-in-play-framework-useing-vicolualjs >在游戏框架中使用视频 Streaming视频,我想知道用游戏控制器播放视频的最佳方式。
我把我的视频存储在文件系统上,而且由于不是每个用户都允许观看每个视频,所以我想限制使用控制器访问。所以我的问题是,我怎样才能将视频从控制器内部传送到客户端(运行视频)?
谢谢!
您的视频是静态内容, 如图像或. css 文件。 您可以使用任何网络服务器为此内容服务 。
如果您想要控制访问权限, 有许多技术。 您可以创建一个控制器来验证请求, 打开视频并在回复中写入字节。 我从来没有尝试过这一点, 对于我来说, 更有趣的是生成一个安全标记, 并在使用安全插件的 apache 或 nginx 上为文件服务 。
但如果你想的东西不同于渐进下载(如 http http live 流或 trmp、 tsp 等), 您需要一个视频服务器, 如 Wowza、 闪光媒体服务器或 red5 。 您可以使用相同的象征性策略 。
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...