@flashphoner/websdk 2.0.232 → 2.0.234
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 +75 -1
- package/examples/demo/streaming/console/console.js +88 -8
- 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/flashphoner-rest-api.js
CHANGED
|
@@ -108,10 +108,11 @@ var instance = function (url, coreUrl) {
|
|
|
108
108
|
|
|
109
109
|
var push = function() {
|
|
110
110
|
var api = url + PUSH_PATH;
|
|
111
|
-
var push = function (streamName, rtmpUrl) {
|
|
111
|
+
var push = function (streamName, rtmpUrl, fullUrl = false) {
|
|
112
112
|
return send(api + "/startup", {
|
|
113
113
|
streamName: streamName,
|
|
114
|
-
rtmpUrl: rtmpUrl
|
|
114
|
+
rtmpUrl: rtmpUrl,
|
|
115
|
+
rtmpTransponderFullUrl: fullUrl
|
|
115
116
|
});
|
|
116
117
|
};
|
|
117
118
|
var find = function (streamName, rtmpUrl) {
|