Can we securely serve content (video/images) if player is HTML5?
I have a custom multi-media player written in silverlig开发者_JAVA技巧ht which displays both images and video. As you can guess, lot of people do not have silverlight and want us to use a better tech.
I am keen on HTML5, but then few concerns:
How do i avoid users to download content to their local machines? I just want them to stream from servers when they want to view it.
How do i avoid users to copy paste all the player code, as its just HTML/JS?
Is there a way we can do adaptive streaming in HTML5?
The answers to your concerns are:
- You can't
- You can't
- If you mean like RTMP, there's no support currently
If these are your primary concerns, then HTML5 video is not the solution you are looking for. You may find this mailing list thread interesting, just one of many times the issue has been raised but with some nice long explanations.
精彩评论