Controlling user sessions
The client has a streaming server (unknown for us at this time) that is used for streamin开发者_开发百科g H.264 streams from IP cameras. This is fine in their LAN.
Now they want to allow authorized users to watch the streams over the internet. But they have few requests for these internet users:
- The users have to "login" to the application to watch the streams.
- The user should have only one streaming session at a time.
- The session has to be limited by some time on daily bases.
Our solution should have an independent application server for this, with database server etc... And our application should control the access to the streaming server
Any ideas would be appreciated. Thanks.
Hmm, sounds like you only need to implement user session control using something like PHP. Require every user to have an account, then monitor the sessions they are accessing, including checking the time the session has been active :)
精彩评论