Protect audio file from being downloaded while still being playable through JQuery JPlayer

自闭症网瘾萝莉.ら 提交于 2019-12-28 18:28:11

问题


I have audio files saved in a folder on my server. They are called by JQuery JPlayer to be played. However if a person looks at the source of the page, they can find the location of the file and simply download it. I want to protect the files from being downloadable, but still allow JPlayer to play them. Is this possible?

I have tried denying the folder with .htaccess as well as password protecting the folder, but this prevents JPlayer from being able to play the files.


回答1:


It's impossible to stop a savvy user stealing your media. But if you like, you could

  • use oAuth to govern access to the media resource
  • teach your server to only respond to media requests that contain "special" HTTP Headers, Cookies etc.
  • use DRM (washes mouth out)
  • some other URL obfuscating/expiring method you dream up..

To save time, i suggest you accept whatever you publish can be copied / taken. So, why not publish

  • a sample snippet (e.g. the first minute)
  • A lower-bitrate / mono taster version

Recently, a widget allowing you to stream Paul McCartney's new album was published in the Guardian.. how this is "secure" i don't know, I opened Chrome Dev Tools Network tab and helped myself to anything "audio/mpeg"!




回答2:


I found a possible answer for you, using PHP: Solution using PHP sessions

It's a long thread, but there's code there that will help you.




回答3:


You should be aware (just in case you're not) that if someone can play the file in their browser, there is nothing to stop them playing the file and using recording software to capture the audio.



来源:https://stackoverflow.com/questions/9222532/protect-audio-file-from-being-downloaded-while-still-being-playable-through-jque

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!