<div dir="ltr">It seems that I answered my own question. It was theĀ gst-rtsp-server example server that was messing up the "max-size-time" timing. When I switched over to VLC RTSP streamer, I got my 1 second video segments.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 8, 2021 at 1:26 PM Floyd Brown <<a href="mailto:flobro30101@gmail.com">flobro30101@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>I added the parameter max-size-time to splitmuxsink to have the pipeline save off video segments every second. So the parameterĀ I used:</div><div>const uint64_t SEGMENT_TIME = G_GUINT64_CONSTANT(1000000000);<br></div><div><br></div><div>uint64_t segtime = SEGMENT_TIME;</div><div>GstElement *seg_ele = add_element("splitmuxsink");<br>g_signal_connect(seg_ele, "format-location-full",<br>                        G_CALLBACK(on_location_handler),this);<br>        g_object_set(seg_ele, "max-size-time", segtime, NULL);<br></div><div>...</div><div><br></div><div><br></div><div>I get the callback, but it gives me 10 second segments instead of 1 second segments (after they are written).</div><div><br></div><div>Anyone seen this before? Any ideas on what could affect the timing like PTS values from the video?</div><div><br></div><div><br></div><div><br></div><br clear="all"><div><div dir="ltr"><div dir="ltr"><div>Thanks<br><br></div>Floyd Brown<br><br></div></div></div></div>
</blockquote></div>