By TWD on
I need to configure Drupal so that a client can upload audio tracks then potential music customers can listen to those tracks in there entirety but NOT be able to download the file to their computer.
There is some software available today called RealPlayer that allows anyone to rip off streamed music
under some circumstances:
http://www.youtube.com/watch?v=eotzh-jz7lM
This might complicate things.
The files need to be secure.
Furthermore, if the music player is Flash driven their needs to be a HTML fallback so
that it works on iOS devices like iPhone and iPad.
Which modules do I need?
Comments
You can't protect anything if
You can't really protect anything if you put it on the internet and offer it up as a stream.
However, you can prevent your files from being directly downloaded by placing them outside of the doc root - still though, for a saavy user it doesn't take much to rip streaming media.
as for ios, just fall back to the html5 audio tag.
Thanks for the reply. So what
Thanks for the reply.
So what audio player do you recommend then?
Are there any that provide built in html5 fallback support?
Best Drupal 6 modules for this?
I tend to steer away from
I tend to steer away from modules for stuff like this - it is just easier for me to use views and create a simple template. That is just me though, I am sure a module exists for it by now.
Here is a views block that i reuse quite a lot - it defaults to flowplayer if html5 is not supported. If html5 is supported it will just use that.
That is for mp4 video, mp3 audio and youtube embed ids. I usually only us this template when there is only a single item per media type per page. otherwise you would be loading all of that js multiple times, and you would want to put it in an external file called from the header.
How are you determining if
How are you determining if HTML5 is supported?
Is the media file's url protected?
var video =
Tries to create an html5 video element - if it can't then its not supported.
In my case, my media is publicly accessible - you would store yours outside of the docroot.