简体   繁体   中英

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.

Can I make this delay lower then 2.0 seconds?

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);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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