We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07255a commit 0db07baCopy full SHA for 0db07ba
proto.txt
@@ -1,3 +1,7 @@
1
+
2
3
+// BFT Media Syncronization
4
5
Click play ->
6
Send currenttime
7
@@ -7,6 +11,9 @@ Click play ->
11
onPlay:
8
12
While:
9
13
estimatedSeconds = now-initialReceivedTime
10
- if abs(playerSeconds - estimatedSeconds) > 6 seconds then
14
+ // Threshold(seconds) recommendations
15
+ // 1.0 to 2.5 - For buffered network (to be re-evaluated)
16
+ // 0.0 to 1.0 - For segmented network (ex: HLS/DASH) (YES permit real no-latency)
17
+ if abs(playerSeconds - estimatedSeconds) > threshold then
18
set playerSeconds to estimatedSeconds
19
0 commit comments