English 中文(简体)
如何使用 Play Frame 和 Videojs 播放视频?
原标题:How to stream a video using Play Framework and videojs?

有关"https://stackoverflow.com/ questions/10264416/Spreating-Victory-in-play-framework-useing-vicolualjs >在游戏框架中使用视频 Streaming视频,我想知道用游戏控制器播放视频的最佳方式。

我把我的视频存储在文件系统上,而且由于不是每个用户都允许观看每个视频,所以我想限制使用控制器访问。所以我的问题是,我怎样才能将视频从控制器内部传送到客户端(运行视频)?

谢谢!

问题回答

您的视频是静态内容, 如图像或. css 文件。 您可以使用任何网络服务器为此内容服务 。

如果您想要控制访问权限, 有许多技术。 您可以创建一个控制器来验证请求, 打开视频并在回复中写入字节。 我从来没有尝试过这一点, 对于我来说, 更有趣的是生成一个安全标记, 并在使用安全插件的 apache 或 nginx 上为文件服务 。

但如果你想的东西不同于渐进下载(如 http http live 流或 trmp、 tsp 等), 您需要一个视频服务器, 如 Wowza、 闪光媒体服务器或 red5 。 您可以使用相同的象征性策略 。





相关问题
Spring Properties File

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 ...

Logging a global ID in multiple components

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 ...

Java Library Size

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 ...

How to get the Array Class for a given Class in Java?

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....

SQLite , Derby vs file system

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 ...

热门标签