You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are playing dash content with the absence of UTCTiming element in the manifests.
Because of that, SntpClient is used as wall clock time source. There is no option to insert UTCTiming on server side.
Our app never unloads itself from memory since it runs as launcher.
After a while (approximately a week) there is a significant drift in SystemClock.elapsedRealtime(), which makes player to do inaccurate requests for media segments which leads to player stops playing live content, since it requests segments that do not exist yet on the server.
Proposed solution
It would be great to have a new method for SntpClient that allows for setting a custom synchronization interval or leaving it unset.
Something like:
--
There is already a similar issue: #697
But the sync interval is hardcoded to 10 minutes, We don't think It needs to be so frequent, and It would be much better to have an option to set a desired synchronization interval in runtime.
The text was updated successfully, but these errors were encountered:
Use case description
We are playing dash content with the absence of UTCTiming element in the manifests.
Because of that, SntpClient is used as wall clock time source. There is no option to insert UTCTiming on server side.
Our app never unloads itself from memory since it runs as launcher.
After a while (approximately a week) there is a significant drift in SystemClock.elapsedRealtime(), which makes player to do inaccurate requests for media segments which leads to player stops playing live content, since it requests segments that do not exist yet on the server.
Proposed solution
It would be great to have a new method for SntpClient that allows for setting a custom synchronization interval or leaving it unset.
Something like:
SntpClient.setNtpPoolInterval(12L * 3600L * 1000L)
Proposed example: 44751be
--
There is already a similar issue: #697
But the sync interval is hardcoded to 10 minutes, We don't think It needs to be so frequent, and It would be much better to have an option to set a desired synchronization interval in runtime.
The text was updated successfully, but these errors were encountered: