@flashphoner/websdk 2.0.201 → 2.0.206
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/sip/phone/phone.js +7 -10
- package/examples/demo/streaming/hls-player/hls-player.html +1 -4
- package/examples/demo/streaming/hls-player/hls-player.js +19 -1
- package/examples/demo/streaming/hls-player/player-page.html +1 -1
- package/examples/demo/streaming/hls-player/video-js.css +142 -51
- package/examples/demo/streaming/hls-player/video.js +27294 -20390
- package/examples/demo/streaming/hls-player/video.min.js +27 -0
- package/examples/demo/streaming/media_devices_manager/manager.js +27 -1
- package/examples/demo/streaming/media_devices_manager/media_device_manager.html +7 -0
- package/examples/typescript/two-way-streaming-ts/.gitignore +23 -0
- package/examples/typescript/two-way-streaming-ts/README.md +36 -0
- package/examples/typescript/two-way-streaming-ts/package.json +45 -0
- package/examples/typescript/two-way-streaming-ts/public/favicon.ico +0 -0
- package/examples/typescript/two-way-streaming-ts/public/index.html +33 -0
- package/examples/typescript/two-way-streaming-ts/public/logo192.png +0 -0
- package/examples/typescript/two-way-streaming-ts/public/logo512.png +0 -0
- package/examples/typescript/two-way-streaming-ts/public/manifest.json +25 -0
- package/examples/typescript/two-way-streaming-ts/public/media/preloader.mp4 +0 -0
- package/examples/typescript/two-way-streaming-ts/public/robots.txt +3 -0
- package/examples/typescript/two-way-streaming-ts/src/TwoWayStreamingApp.css +23 -0
- package/examples/typescript/two-way-streaming-ts/src/TwoWayStreamingApp.tsx +371 -0
- package/examples/typescript/two-way-streaming-ts/src/fp-utils.ts +117 -0
- package/examples/typescript/two-way-streaming-ts/src/index.css +13 -0
- package/examples/typescript/two-way-streaming-ts/src/index.tsx +9 -0
- package/examples/typescript/two-way-streaming-ts/tsconfig.json +26 -0
- package/examples/vue/two-way-streaming-vue/.gitignore +23 -0
- package/examples/vue/two-way-streaming-vue/README.md +36 -0
- package/examples/vue/two-way-streaming-vue/babel.config.js +5 -0
- package/examples/vue/two-way-streaming-vue/package.json +47 -0
- package/examples/vue/two-way-streaming-vue/public/favicon.ico +0 -0
- package/examples/vue/two-way-streaming-vue/public/index.html +17 -0
- package/examples/vue/two-way-streaming-vue/src/TwoWayStreamingApp.vue +346 -0
- package/examples/vue/two-way-streaming-vue/src/assets/media/preloader.mp4 +0 -0
- package/examples/vue/two-way-streaming-vue/src/fp-utils.js +117 -0
- package/examples/vue/two-way-streaming-vue/src/main.js +9 -0
- package/examples/vue/two-way-streaming-vue/vue.config.js +8 -0
- package/flashphoner-no-flash.js +4 -4
- package/flashphoner-no-flash.min.js +1 -1
- package/flashphoner-no-webrtc.js +4 -4
- package/flashphoner-no-webrtc.min.js +1 -1
- package/flashphoner-no-wsplayer.js +4 -4
- package/flashphoner-no-wsplayer.min.js +1 -1
- package/flashphoner-room-api.js +4 -4
- package/flashphoner-room-api.min.js +1 -1
- package/flashphoner-temasys-flash-websocket-without-adapterjs.js +4 -4
- package/flashphoner-temasys-flash-websocket.js +4 -4
- package/flashphoner-temasys-flash-websocket.min.js +1 -1
- package/flashphoner-webrtc-only.js +4 -4
- package/flashphoner-webrtc-only.min.js +1 -1
- package/flashphoner.js +4 -4
- package/flashphoner.min.js +1 -1
- package/package.json +2 -1
- package/src/constants.d.ts +1 -0
- package/src/flashphoner-core.d.ts +192 -0
- package/src/flashphoner-core.js +4 -4
- package/src/room-module.d.ts +29 -0
- package/examples/demo/streaming/hls-player/videojs-hls.min.js +0 -27
|
@@ -9041,7 +9041,7 @@ var createSession = function createSession(options) {
|
|
|
9041
9041
|
mediaProviders: Object.keys(MediaProvider),
|
|
9042
9042
|
keepAlive: keepAlive,
|
|
9043
9043
|
authToken: authToken,
|
|
9044
|
-
clientVersion: "2.0.
|
|
9044
|
+
clientVersion: "2.0.206",
|
|
9045
9045
|
clientOSVersion: window.navigator.appVersion,
|
|
9046
9046
|
clientBrowserVersion: window.navigator.userAgent,
|
|
9047
9047
|
msePacketizationVersion: 2,
|
|
@@ -9267,7 +9267,7 @@ var createSession = function createSession(options) {
|
|
|
9267
9267
|
* @param {HTMLElement} options.localVideoDisplay Div element local video should be displayed in
|
|
9268
9268
|
* @param {HTMLElement} options.remoteVideoDisplay Div element remote video should be displayed in
|
|
9269
9269
|
* @param {Object=} options.custom User provided custom object that will be available in REST App code
|
|
9270
|
-
* @param {
|
|
9270
|
+
* @param {string=} options.stripCodecs Comma separated strings of codecs which should be stripped from WebRTC SDP (ex. "SILK,G722")
|
|
9271
9271
|
* @param {Array<string>=} options.sipSDP Array of custom SDP params (ex. bandwidth (b=))
|
|
9272
9272
|
* @param {Array<string>=} options.sipHeaders Array of custom SIP headers
|
|
9273
9273
|
* @param {string=} options.videoContentHint Video content hint for browser ('detail' by default to maintain resolution), {@link Flashphoner.constants.CONTENT_HINT_TYPE}
|
|
@@ -9529,7 +9529,7 @@ var createSession = function createSession(options) {
|
|
|
9529
9529
|
* @param {Boolean=} answerOptions.receiveAudio Receive audio
|
|
9530
9530
|
* @param {Boolean=} answerOptions.receiveVideo Receive video
|
|
9531
9531
|
* @param {String=} answerOptions.constraints Answer call with constraints
|
|
9532
|
-
* @param {
|
|
9532
|
+
* @param {String=} answerOptions.stripCodecs Comma separated string of codecs which should be stripped from WebRTC SDP (ex. "SILK,G722")
|
|
9533
9533
|
* @param {Array<string>=} answerOptions.sipSDP Array of custom SDP params (ex. bandwidth (b=))
|
|
9534
9534
|
* @param {Array<string>=} answerOptions.sipHeaders Array of custom SIP headers
|
|
9535
9535
|
* @param {sdpHook} sdpHook The callback that handles sdp from the server
|
|
@@ -10109,7 +10109,7 @@ var createSession = function createSession(options) {
|
|
|
10109
10109
|
* @param {HTMLElement} options.display Div element stream should be displayed in
|
|
10110
10110
|
* @param {Object=} options.custom User provided custom object that will be available in REST App code
|
|
10111
10111
|
* @param {Integer} [options.flashBufferTime=0] Specifies how long to buffer messages before starting to display the stream (Flash-only)
|
|
10112
|
-
* @param {
|
|
10112
|
+
* @param {String=} options.stripCodecs Comma separated string of codecs which should be stripped from WebRTC SDP (ex. "H264,PCMA,PCMU,G722")
|
|
10113
10113
|
* @param {string=} options.rtmpUrl Rtmp url stream should be forwarded to
|
|
10114
10114
|
* @param {Object=} options.mediaConnectionConstraints Stream specific constraints for underlying RTCPeerConnection
|
|
10115
10115
|
* @param {Boolean=} options.flashShowFullScreenButton Show full screen button in flash
|