有没有办法在AS3中缓存rtmp mp3流?
我制作了一个 mp3 flash 播放器来播放 rtmp mp3 流,并且工作正常。我的问题是将该 rtmp 文件缓存在临时文件中,以便即使在互联网连接不可用时也可以播放缓存的音频文件。
那么flash AS3可以缓存rtmp文件吗? 如果是......那么建议我如何做到这一点......
谢谢, 尼凯什
I have made a mp3 flash player to play a rtmp mp3 stream and that is working fine.My problem is to cache that rtmp file in temporary file , so that the cache audio file could be played even when internet connection is not available .
So is it possible in flash AS3 to cache rtmp file ?
if it is ..then suggest me how to do this ...
Thanks ,
nikesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能很难完成。我什至不知道是否可能,但我的想法是使用
ByteArray
来存储传入的数据,然后将数据预下载到 >MP3。希望有帮助。
This will likely be quite difficult to accomplish. I don't even know if it's possible, but my idea would be to use a
ByteArray
to store the data coming in and then ouput the data pre-download to MP3.Hope that helps.