@flashphoner/websdk 2.0.232 → 2.0.233
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docTemplate/README.md +1 -1
- package/examples/demo/streaming/console/console.html +44 -1
- package/examples/demo/streaming/console/console.js +37 -0
- package/flashphoner-no-flash.js +14 -14
- package/flashphoner-no-flash.min.js +2 -2
- package/flashphoner-no-webrtc.js +13 -13
- package/flashphoner-no-webrtc.min.js +2 -2
- package/flashphoner-no-wsplayer.js +13 -13
- package/flashphoner-no-wsplayer.min.js +2 -2
- package/flashphoner-rest-api.js +3 -2
- package/flashphoner-temasys-flash-websocket-without-adapterjs.js +15 -15
- package/flashphoner-temasys-flash-websocket.js +15 -15
- package/flashphoner-temasys-flash-websocket.min.js +2 -2
- package/flashphoner-webrtc-only.js +12 -12
- package/flashphoner-webrtc-only.min.js +1 -1
- package/flashphoner.js +13 -13
- package/flashphoner.min.js +2 -2
- package/package.json +1 -1
- package/src/rest-module.js +3 -2
package/package.json
CHANGED
package/src/rest-module.js
CHANGED
|
@@ -107,10 +107,11 @@ var instance = function (url, coreUrl) {
|
|
|
107
107
|
|
|
108
108
|
var push = function() {
|
|
109
109
|
var api = url + PUSH_PATH;
|
|
110
|
-
var push = function (streamName, rtmpUrl) {
|
|
110
|
+
var push = function (streamName, rtmpUrl, fullUrl = false) {
|
|
111
111
|
return send(api + "/startup", {
|
|
112
112
|
streamName: streamName,
|
|
113
|
-
rtmpUrl: rtmpUrl
|
|
113
|
+
rtmpUrl: rtmpUrl,
|
|
114
|
+
rtmpTransponderFullUrl: fullUrl
|
|
114
115
|
});
|
|
115
116
|
};
|
|
116
117
|
var find = function (streamName, rtmpUrl) {
|