I mean, I want to share an audio file without letting users to download it.
Here are my tries :
- When I do
<audio src="myAudio.mp3" />
, it may be kept in the browser cache. - When I do
<audio src="myAudio.mp3?12345" />
, my file is not cached but users can extract its path in the source code, that means they can download it easily. - I thought about adding DRM to it but it seems there are tools to remove that.
- I tried to find jQuery library for that but none of them does what I want.
Is it possible ? If so, how ?