Hi all,
I'm looking to build a jukebox and I am wondering how one would secure songs that are in <audio>
tags with HTML 5. I don't want people to be able to download the song, but I'd like to stream it via those <audio>
tags. Any suggestions?
Hi all,
I'm looking to build a jukebox and I am wondering how one would secure songs that are in <audio>
tags with HTML 5. I don't want people to be able to download the song, but I'd like to stream it via those <audio>
tags. Any suggestions?
Whatever you give people to listen via a stream can be saved to disk too.
you could check referer, use some hashing mechanism (unique ID) to verify the streaming player is your jukebox, not the stream saver etc.
BUT: whatever you do, some people will figure it out (or using the last resort - catching the whole stream, following on what kind of data your jukebox sends etc.)
This is not possible. In order for the client computer to be able to play the song, the song has to be transferred there. Period.
Did you ever figure out how to do this? dusoft's solution was rather cryptic to me, I'm not great with this stuff.