We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce6cd4 commit 6043924Copy full SHA for 6043924
lib/util/player_configuration.js
@@ -35,9 +35,10 @@ goog.require('shaka.util.ConfigUtils');
35
shaka.util.PlayerConfiguration = class {
36
/** @return {shaka.extern.PlayerConfiguration} */
37
static createDefault() {
38
- // This is a relatively safe default in the absence of clues from the
39
- // browser. For slower connections, the default estimate may be too high.
40
- let bandwidthEstimate = 1e6; // 1Mbps
+ // This is a relatively safe default, since 3G cell connections
+ // are faster than this. For slower connections, such as 2G,
+ // the default estimate may be too high.
41
+ let bandwidthEstimate = 500e3; // 500kbps
42
43
let abrMaxHeight = Infinity;
44
0 commit comments