从 Flash 媒体服务器流式传输时,声音断断续续/跳跃。

发布于 2024-12-22 16:04:38 字数 150 浏览 3 评论 0原文

我在从 Flash 媒体服务器流式传输 mp3 文件时遇到问题,声音会非常不稳定。当每秒轮询时, newStream.time 属性有一些疯狂的数字,例如 1,3,6,8,10 总是跳过一两秒。增加缓冲时间似乎可以帮助解决问题,但不能解决问题。有什么想法吗?

非常感谢。

I'm having an issue streaming mp3 files form flash media server where the sound will be very choppy. When polled every second the newStream.time property has kind of crazy numbers like 1,3,6,8,10 always skipping a second or two. Raising the buffertime seems to help the problem but not fix it. Any ideas?

Thanks very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泡沫很甜 2024-12-29 16:04:38

对于 HLS 流(到 iOS 设备),您需要在 FMLE 上购买 AAC。

For HLS stream (to iOS device) you'll need to purchase AAC on FMLE.

寄意 2024-12-29 16:04:38

你必须这样做

{     
        var startPlay:Boolean=false;
        ns.play("your-video-url");
        ns.pause();
        ns.seek(0);
        addEventListener(Event.ENTER_FRAME, myFunction);

        function myFunction(E:Event):void{
        var loaded:number=ns.byteloaded/ns.totalbyte; 
        var tmp:Number=Math.Ceil(loaded);
        if(tmp>=4){
        startPlay=true;
        removeEventListener(Event.ENTER_FRAME, myFunction);
        ns.resume();
        }
        //if you want to make a progress 
        //progressText.text="Please wait a second";

        }


    }

you have to do like this

{     
        var startPlay:Boolean=false;
        ns.play("your-video-url");
        ns.pause();
        ns.seek(0);
        addEventListener(Event.ENTER_FRAME, myFunction);

        function myFunction(E:Event):void{
        var loaded:number=ns.byteloaded/ns.totalbyte; 
        var tmp:Number=Math.Ceil(loaded);
        if(tmp>=4){
        startPlay=true;
        removeEventListener(Event.ENTER_FRAME, myFunction);
        ns.resume();
        }
        //if you want to make a progress 
        //progressText.text="Please wait a second";

        }


    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文