<div dir="ltr">Hello, I'm trying to have an Android Player receiving a RTSP stream from the internet and play it with very low latency. <div>I'm using Tutorial 5 from the GStreamer home. Without any change my stream has a latency about 2 seconds (worst than Vitamio that I was using previously).</div><div><br></div><div>With futher investigation we realized we could change the latency to 0 in the pipeline using this code:</div><div><br></div><div>****************************************************************</div><div><div>data->pipeline = gst_parse_launch("playbin", &error);</div><div>    gst_pipeline_set_latency(data->pipeline,0); //This is what I wrote</div><div><br></div><div>    if (error) {</div><div>    gchar *message = g_strdup_printf("Unable to build pipeline: %s", error->message);</div><div>    g_clear_error (&error);</div><div>    set_ui_message(message, data);</div><div>    g_free (message);</div><div>    return NULL;</div><div>  }</div><br class="gmail-Apple-interchange-newline">****************************************************************</div><div><br></div><div>Now the stream is strutting, alas dropping frames. However the stream is faster than the base code.</div><div>Based on other questions, I tried to add rtpjitterbuffer into the pipeline but seems that is not that simple.</div><div><br></div><div>How can I construct or change the pipeline to have low latency and no strutting?</div></div>