Skip to content

Commit 006ec27

Browse files
author
Germano Fronza
authored
Merge pull request #64 from eventials/master
fix autoSwitch level selector
2 parents c959a72 + ed60695 commit 006ec27

File tree

10 files changed

+38
-14
lines changed

10 files changed

+38
-14
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The plugin accepts several **optional** configuration options, such as:
3737
- `playbackType` (default **live** if the source contains live on its URL, **vod** otherwise).
3838
- `bufferTime` (default **0.1**) - How long to buffer before start playing the media.
3939
- `startLevel` (default **-1**) - Initial quality level index.
40+
- `autoSwitch` (default **false**) - Whether video should autoSwitch quality
4041
- `useAppInstance` (default **false**) - Set it to `true` if your source url contains the app instance (not required if the app instance is `_definst_`).
4142
- `proxyType` (default **none**) - Determines which fallback methods are tried if an initial connection attempt to Flash Media Server fails.
4243

dist/assets/RTMP.swf

-179 Bytes
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clappr-rtmp",
3-
"version": "0.0.16",
3+
"version": "0.0.17",
44
"description": "RTMP Support for Clappr Player",
55
"main": "dist/rtmp.js",
66
"author": "Flávio Ribeiro",
@@ -20,8 +20,8 @@
2020
"url": "[email protected]:flavioribeiro/clappr-rtmp-plugin.git"
2121
},
2222
"scripts": {
23-
"build_swf": "$(find $HOME/airsdk/ -name mxmlc | head -n1) -default-background-color=0x000000 -default-size=640,360 -language=as3 -output=./public/RTMP.swf -optimize=true -compress=true -use-gpu=true -target-player=11.1 -use-network=false ./src/RTMP.as -library-path+=./src/OSMF.swc",
24-
"release": "node_modules/.bin/webpack --progress -d --optimize-minimize --optimize-dedupe --output-filename rtmp.min.js",
23+
"build_swf": "cd ./src/ && sh build_player.sh",
24+
"release": "node_modules/.bin/webpack --no-minimize && node_modules/.bin/webpack --progress -d --optimize-minimize --optimize-dedupe --output-filename rtmp.min.js",
2525
"build": "node_modules/.bin/webpack --progress",
2626
"watch": "node_modules/.bin/webpack --progress --watch",
2727
"test": "karma start --single-run --browsers Chrome",

public/RTMP.swf

-179 Bytes
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 %>"/>
10+
<param name=FlashVars value="playbackId=<%= playbackId %>&scaling=<%= scaling %>&bufferTime=<%= bufferTime %>&playbackType=<%= playbackType %>&startLevel=<%= startLevel %>&useAppInstance=<%= useAppInstance %>&proxyType=<%= proxyType %>&autoSwitch=<%= autoSwitch %>"/>
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 %>"
25+
FlashVars="playbackId=<%= playbackId %>&scaling=<%= scaling %>&bufferTime=<%= bufferTime %>&playbackType=<%= playbackType %>&startLevel=<%= startLevel %>&useAppInstance=<%= useAppInstance %>&proxyType=<%= proxyType %>&autoSwitch=<%= autoSwitch %>"
2626
src="<%= swfPath %>"
2727
width="100%"
2828
height="100%">

src/RTMP.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ package {
218218

219219
mediaPlayer.bufferTime = this.root.loaderInfo.parameters.bufferTime;
220220
mediaPlayer.autoPlay = false;
221-
mediaPlayer.autoDynamicStreamSwitch = startLevel == -1;
221+
mediaPlayer.autoDynamicStreamSwitch = this.root.loaderInfo.parameters.autoSwitch;
222222
mediaPlayer.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onTimeUpdated);
223223
mediaPlayer.addEventListener(TimeEvent.DURATION_CHANGE, onTimeUpdated);
224224
mediaPlayer.addEventListener(TimeEvent.COMPLETE, onFinish);

src/main.js

+26-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export default class RTMP extends Flash {
3131
this.options.rtmpConfig.useAppInstance = this.options.rtmpConfig.useAppInstance === undefined ? false : this.options.rtmpConfig.useAppInstance
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
34+
this.options.rtmpConfig.autoSwitch = this.options.rtmpConfig.autoSwitch === undefined ? false : this.options.rtmpConfig.autoSwitch
3435
this.addListeners()
3536
this._setupPlaybackType()
3637
}
@@ -62,6 +63,11 @@ export default class RTMP extends Flash {
6263

6364
set currentLevel(level) {
6465
this.el.setLevel(level);
66+
67+
if (level === -1 && level !== this.currentLevel) {
68+
this.trigger(Events.PLAYBACK_LEVEL_SWITCH_END)
69+
this.trigger(Events.PLAYBACK_BITRATE, {level: this.currentLevel})
70+
}
6571
}
6672

6773
get autoSwitchLevels() {
@@ -155,8 +161,20 @@ export default class RTMP extends Flash {
155161
}
156162

157163
render() {
158-
this.$el.html(this.template({ cid: this.cid, swfPath: this.swfPath, playbackId: this.uniqueId, wmode: this.options.rtmpConfig.wmode, scaling: this.options.rtmpConfig.scaling,
159-
bufferTime: this.options.rtmpConfig.bufferTime, playbackType: this.options.rtmpConfig.playbackType, startLevel: this.options.rtmpConfig.startLevel, useAppInstance: this.options.rtmpConfig.useAppInstance, proxyType: this.options.rtmpConfig.proxyType }))
164+
this.$el.html(this.template({
165+
cid: this.cid,
166+
swfPath: this.swfPath,
167+
playbackId: this.uniqueId,
168+
wmode: this.options.rtmpConfig.wmode,
169+
scaling: this.options.rtmpConfig.scaling,
170+
bufferTime: this.options.rtmpConfig.bufferTime,
171+
playbackType: this.options.rtmpConfig.playbackType,
172+
startLevel: this.options.rtmpConfig.startLevel,
173+
autoSwitch: this.options.rtmpConfig.autoSwitch,
174+
useAppInstance: this.options.rtmpConfig.useAppInstance,
175+
proxyType: this.options.rtmpConfig.proxyType
176+
}))
177+
160178
if (Browser.isIE) {
161179
this.$('embed').remove()
162180
if (Browser.isLegacyIE) {
@@ -189,7 +207,12 @@ export default class RTMP extends Flash {
189207
_reporLevels() {
190208
if (this.isDynamicStream) {
191209
if (this.levels) {
192-
this.trigger(Events.PLAYBACK_LEVELS_AVAILABLE, this.levels, this.options.rtmpConfig.startLevel)
210+
if (this.options.rtmpConfig.autoSwitch === true) {
211+
this.trigger(Events.PLAYBACK_LEVELS_AVAILABLE, this.levels, -1)
212+
this.trigger(Events.PLAYBACK_BITRATE, {level: this.currentLevel})
213+
} else {
214+
this.trigger(Events.PLAYBACK_LEVELS_AVAILABLE, this.levels, this.options.rtmpConfig.startLevel)
215+
}
193216
}
194217
}
195218
}

0 commit comments

Comments
 (0)