将 mp3 流式传输到网站(包括 iPhone)
我想将 MP3 音频文件流式传输到网页,最好使用什么技术?
我喜欢 flash 控件,但我不想排除 iphone/ipad 用户
查看 jquery,但正在使用 html5(如果你能给我一个好的 jquery 选项的链接将会很有用)
任何人都可以建议我们使用一种技术吗?可以使用,这将适应所有用户,音频需要内联播放而不是离开页面。
提前致谢
i want to stream an MP3 audio file to a webpage, what would be the best technology to use?
I like the flash controls, but i don't want to exclude the iphone/ipad users
looked at jquery, but is using html5 (if you can give me a link to a good jquery option would be useful)
can anyone suggest a technology we can use, that will accomodate all users, the audio needs to play inline and not move away from the page.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iPhone版本的Safari支持相当多的HTML5, 包括
<音频>
。使用 Modernizr 检测 HTML5支持,如果浏览器支持,则使用它支持它。否则,请使用基于 Flash 的播放器。
The iPhone's version of Safari supports quite a lot of HTML5, including
<audio>
. Use Modernizr to detect HTML5<audio>
support, and use it if the browser supports it. Otherwise, fall back to a Flash-based player.