简体   繁体   English

iOS中的GStreamer AAC音频流延迟

[英]GStreamer AAC audio stream delay in iOS

I'm playing aac audio stream on my iOS device using GStreamer SDK, its working fine, but delay is above 2.0 seconds. 我正在使用GStreamer SDK在iOS设备上播放aac音频流 ,其工作正常,但延迟超过2.0秒。

Can I make this delay lower then 2.0 seconds? 我可以将延迟降低到2.0秒以下吗?

There may be some buffering issue. 可能存在一些缓冲问题。

This is how I'm creating the pipeline 这就是我创建管道的方式

pipeline = gst_parse_launch("playbin2", &error);

尝试这样设置延迟:

g_object_set(G_OBJECT(pipeline.source), "latency", 250, NULL);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM