Increasing the update rate of gst_element_query_position in GStreamer -
i busy creating wrapper library (for node.js) around gstreamer. have working player, , using interval request pipeline position (with percent formatting) every 200ms.
my issue however, receive updated value every 1000ms.
i calling gst_element_query_position (and have tried attaching pad gst_pad_query_position same result).
is there way increase update rate of value retrieved gst_element_query_position in order present more granular time information?
when calling gst_element_query_position, use gst_format_time on gst_format_percent. gst_format_percent deprecated.
we use position in combination duration (from gst_element_query_duration) , seems work fine more granular usage.
Comments
Post a Comment