<div dir="ltr">Hi All,<div><br></div><div> I am doing a sink -> src push. The sink is in a separate pipeline and the src is created by gst-rtsp-server when creating the media pipeline.</div><div><br></div><div> I have tried both using a pull (need-data signal) and push (new-sample) methods and the result is the same.</div><div><br></div><div> I am copying the buffer from the sink to the source. I am setting the PTS on the copied buffer otherwise after the first client disconnects I am unable to connect again.</div><div><br></div><div> GST_BUFFER_PTS(bufcpy) = client->timestamp_;</div><div> client->timestamp_ += GST_BUFFER_DURATION(bufcpy);</div><div> gst_app_src_push_buffer(client->appsrc_, bufcpy);</div><div><br></div><div> When cofiguring the client I have "played" with the following appsrc properties but they don't seem to make a difference:</div><div><br></div><div><div>  gst_util_set_object_arg(reinterpret_cast<GObject*>(appsrc.Get()), "format", "time");</div><div>  g_object_set(reinterpret_cast<GObject*>(appsrc.Get()), "block", false, nullptr);</div><div>  g_object_set(reinterpret_cast<GObject*>(appsrc.Get()), "is-live", true, nullptr);</div><div>  g_object_set(reinterpret_cast<GObject*>(appsrc.Get()), "do-timestamp", true, nullptr);</div><div>//  g_object_set(reinterpret_cast<GObject*>(appsrc.Get()), "stream-type", "random-access", nullptr);</div><div>//  g_object_set(reinterpret_cast<GObject*>(appsrc.Get()), "max-bytes", 1000, nullptr);</div></div><div><br></div><div>Any help would be awesome, thanks.</div><div><br></div><div>Serj</div></div>