使用 soundmanager 2 播放位于 public_html 之外的 mp3 文件
我必须使用 soundmanager2 或任何其他基于 flash 的 mp3 播放器流式传输位于 public_html 之外的一些 mp3 文件,但我无法使其工作。
您知道有关此主题的任何解决方法吗?
谢谢
I have to stream some mp3 files located outside of public_html with soundmanager2 or any other flash-based mp3 player but i can't make it work.
Do you know any workaround on this subject ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写一个小的 php 脚本来加载文件中的内容并发送它。如果您的目的是阻止用户复制声音,那么这种方式可能是不可能的。如果您无法将文件移动到 public_html,您可以创建一个符号链接或仅创建 php 脚本。
您可以像这样使用 readfile:
You could write a little php script which loads the content from the file and sends it. If your intention is to prevent the user from copying the sound this is probably not possible this way. If you just can't move the files to public_html you could create a symbolic link or just the php script.
You could use readfile like here: