Skip to content

Commit 2fe6f7e

Browse files
author
Germano Fronza
authored
Merge pull request #66 from eventials/master
AutoSwitchRules are now configurable
2 parents 1327d6e + c55c947 commit 2fe6f7e

12 files changed

+47
-13
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,23 @@ var player = new Clappr.Player({
2424
playbackType: 'live',
2525
bufferTime: 1,
2626
startLevel: 0,
27+
switchRules: {
28+
"SufficientBandwidthRule": {
29+
"bandwidthSafetyMultiple": 1.15,
30+
"minDroppedFps": 2
31+
},
32+
"InsufficientBufferRule": {
33+
"minBufferLength": 2
34+
},
35+
"DroppedFramesRule": {
36+
"downSwitchByOne": 10,
37+
"downSwitchByTwo": 20,
38+
"downSwitchToZero": 24
39+
},
40+
"InsufficientBandwidthRule": {
41+
"bitrateMultiplier": 1.15
42+
}
43+
}
2744
},
2845
});
2946
```
@@ -40,6 +57,7 @@ The plugin accepts several **optional** configuration options, such as:
4057
- `autoSwitch` (default **false**) - Whether video should autoSwitch quality
4158
- `useAppInstance` (default **false**) - Set it to `true` if your source url contains the app instance (not required if the app instance is `_definst_`).
4259
- `proxyType` (default **none**) - Determines which fallback methods are tried if an initial connection attempt to Flash Media Server fails.
60+
- `switchRules` (default **system defined**) - Rules defined to autoSwitch video quality based in some conditions.
4361

4462
## Building
4563

dist/assets/RTMP.swf

1.42 KB
Binary file not shown.

dist/rtmp.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rtmp.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rtmp.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clappr-rtmp",
3-
"version": "0.0.18",
3+
"version": "0.0.19",
44
"description": "RTMP Support for Clappr Player",
55
"main": "dist/rtmp.js",
66
"author": "Flávio Ribeiro",

public/RTMP.swf

1.42 KB
Binary file not shown.

public/flash.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<param name="allowFullScreen" value="false">
88
<param name="wmode" value="<%= wmode %>">
99
<param name="tabindex" value="1">
10-
<param name=FlashVars value="playbackId=<%= playbackId %>&scaling=<%= scaling %>&bufferTime=<%= bufferTime %>&playbackType=<%= playbackType %>&startLevel=<%= startLevel %>&useAppInstance=<%= useAppInstance %>&proxyType=<%= proxyType %>&autoSwitch=<%= autoSwitch %>"/>
10+
<param name=FlashVars value="playbackId=<%= playbackId %>&scaling=<%= scaling %>&bufferTime=<%= bufferTime %>&playbackType=<%= playbackType %>&startLevel=<%= startLevel %>&useAppInstance=<%= useAppInstance %>&proxyType=<%= proxyType %>&autoSwitch=<%= autoSwitch %>&switchRules=<%= switchRules %>"/>
1111
<embed
1212
name="<%= cid %>"
1313
type="application/x-shockwave-flash"
@@ -22,7 +22,7 @@
2222
swliveconnect="true"
2323
allowfullscreen="false"
2424
bgcolor="#000000"
25-
FlashVars="playbackId=<%= playbackId %>&scaling=<%= scaling %>&bufferTime=<%= bufferTime %>&playbackType=<%= playbackType %>&startLevel=<%= startLevel %>&useAppInstance=<%= useAppInstance %>&proxyType=<%= proxyType %>&autoSwitch=<%= autoSwitch %>"
25+
FlashVars="playbackId=<%= playbackId %>&scaling=<%= scaling %>&bufferTime=<%= bufferTime %>&playbackType=<%= playbackType %>&startLevel=<%= startLevel %>&useAppInstance=<%= useAppInstance %>&proxyType=<%= proxyType %>&autoSwitch=<%= autoSwitch %>&switchRules=<%= switchRules %>"
2626
src="<%= swfPath %>"
2727
width="100%"
2828
height="100%">

src/OSMF.swc

572 Bytes
Binary file not shown.

src/RTMP.as

+10-5
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,17 @@ package {
196196
private function playerPlay(url:String=null):void {
197197
try {
198198
if (!mediaElement) {
199-
if (isLive) {
200-
urlResource = new StreamingURLResource(url, StreamType.LIVE, NaN, NaN, null, useAppInstance, null, proxyType);
201-
} else {
202-
urlResource = new StreamingURLResource(url, StreamType.RECORDED, NaN, NaN, null, useAppInstance, null, proxyType);
203-
}
199+
var streamType:String = (isLive ? StreamType.LIVE : StreamType.RECORDED);
200+
201+
urlResource = new StreamingURLResource(url, streamType, NaN, NaN, null, useAppInstance, null, proxyType);
204202

205203
var startLevel:int = int(this.root.loaderInfo.parameters.startLevel);
206204

205+
if (this.root.loaderInfo.parameters.switchRules != "") {
206+
var switchRules:Object = JSON.parse(this.root.loaderInfo.parameters.switchRules.replace(/&quote;/g, '"'));
207+
urlResource.addMetadataValue(MetadataNamespaces.RESOURCE_INITIAL_SWITCH_RULES, switchRules);
208+
}
209+
207210
if (startLevel > -1) {
208211
urlResource.addMetadataValue(MetadataNamespaces.RESOURCE_INITIAL_INDEX, startLevel);
209212
}
@@ -245,6 +248,8 @@ package {
245248
mediaPlayer.play();
246249
}
247250
} catch (err:Error) {
251+
debugLog('Catch error: ' + err.messsage);
252+
248253
playbackState = "ERROR";
249254
_triggerEvent('statechanged');
250255
}

src/SMILPlugin.swc

601 Bytes
Binary file not shown.

src/main.js

+11
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export default class RTMP extends Flash {
3232
this.options.rtmpConfig.proxyType = this.options.rtmpConfig.proxyType || 'none'
3333
this.options.rtmpConfig.startLevel = this.options.rtmpConfig.startLevel === undefined ? -1 : this.options.rtmpConfig.startLevel
3434
this.options.rtmpConfig.autoSwitch = this.options.rtmpConfig.autoSwitch === undefined ? false : this.options.rtmpConfig.autoSwitch
35+
this.options.rtmpConfig.switchRules = this.options.rtmpConfig.switchRules;
36+
3537
this.addListeners()
3638
this._setupPlaybackType()
3739
}
@@ -160,6 +162,14 @@ export default class RTMP extends Flash {
160162
this.trigger(Events.PLAYBACK_SETTINGSUPDATE, this.name)
161163
}
162164

165+
get _switchRulesJSON() {
166+
if (this.options.rtmpConfig.switchRules !== undefined) {
167+
return JSON.stringify(this.options.rtmpConfig.switchRules).replace(/"/g, '&quot;')
168+
}
169+
170+
return "";
171+
}
172+
163173
render() {
164174
this.$el.html(this.template({
165175
cid: this.cid,
@@ -171,6 +181,7 @@ export default class RTMP extends Flash {
171181
playbackType: this.options.rtmpConfig.playbackType,
172182
startLevel: this.options.rtmpConfig.startLevel,
173183
autoSwitch: this.options.rtmpConfig.autoSwitch,
184+
switchRules: this._switchRulesJSON,
174185
useAppInstance: this.options.rtmpConfig.useAppInstance,
175186
proxyType: this.options.rtmpConfig.proxyType
176187
}))

0 commit comments

Comments
 (0)