2.0.242 • Published 19 days ago

@flashphoner/websdk v2.0.242

Weekly downloads
147
License
MIT
Repository
-
Last release
19 days ago

@flashphoner/websdk

Flashphoner WebCallServer JavaScript API (Web SDK)

Flashphoner WebCallServer JavaScript API (Web SDK) implementation.

Install

npm install @flashphoner/websdk

Using prebuild Javascript bundle in browser

two-way-streaming.html:

<!DOCTYPE html>
<html lang="en">
<head> 
    <script type="text/javascript" src="node_modules/@flashphoner/websdk/flashphoner.js"></script> 
    <script type="text/javascript" src="two-way-streaming.js"></script> 
</head>
<body onload="init_api()">
    <div id="publish" style="width:320px;height:240px;border: solid 1px"></div>
    <br/><button id="publishBtn">Publish</button><br/>
    <br/>
    <div id="play" style="width:320px;height:240px;border: solid 1px"></div>
    <br/><button id="playBtn">Play</button><br/>
    <br/>
    <br/><button id="stopBtn">Stop</button><br/>
</body>
</html>

two-way-streaming.js:

//Constants
var SESSION_STATUS = Flashphoner.constants.SESSION_STATUS;
var STREAM_STATUS = Flashphoner.constants.STREAM_STATUS;
var session;
var stream;
  
//Init Flashphoner API on page load
function init_api() {
    Flashphoner.init({});
    publishBtn.onclick = connect;
    playBtn.onclick = playStream;
    stopBtn.onclick = stopPublish;
}
  
//Connect to WCS server over websockets
function connect() {
    session = Flashphoner.createSession({
        urlServer: "wss://demo.flashphoner.com"
    }).on(SESSION_STATUS.ESTABLISHED, function(session) {
        publishStream(session);
    });
}
  
//Publish stream
function publishStream(session) {
    stream = session.createStream({
        name: "stream",
        display: document.getElementById("publish"),
    });
    stream.publish();
}
  
//Playing stream
function playStream() {
    session.createStream({
        name: "stream",
        display: document.getElementById("play"),
    }).play();
}
 
//Stopping stream
function stopPublish() {
    stream.stop();
}

More examples

Please look for more examples on GitHub and on this page

Documentation

Please read the details here and API docs here

Known issues

WebSDK is build with webrtc/adapter library version not lower than 7.2.6. In this regard, direct use of this library together with WebSDK should be avoided.

2.0.242

19 days ago

2.0.241

27 days ago

2.0.240

2 months ago

2.0.239

3 months ago

2.0.238

3 months ago

2.0.237

4 months ago

2.0.236

5 months ago

2.0.235

7 months ago

2.0.234

7 months ago

2.0.233

8 months ago

2.0.232

8 months ago

2.0.231

10 months ago

2.0.229

10 months ago

2.0.230

10 months ago

2.0.228

1 year ago

2.0.227

1 year ago

2.0.226

1 year ago

2.0.225

2 years ago

2.0.224

2 years ago

2.0.219

2 years ago

2.0.223

2 years ago

2.0.222

2 years ago

2.0.221

2 years ago

2.0.218

2 years ago

2.0.217

2 years ago

2.0.216

2 years ago

2.0.215

2 years ago

2.0.209

2 years ago

2.0.208

2 years ago

2.0.212

2 years ago

2.0.211

2 years ago

2.0.210

2 years ago

2.0.207

2 years ago

2.0.206

2 years ago

2.0.205

2 years ago

2.0.203

3 years ago

2.0.202

3 years ago

2.0.201

3 years ago

2.0.200

3 years ago

2.0.198

3 years ago

2.0.193

3 years ago

2.0.191

3 years ago

2.0.192

3 years ago

2.0.190

3 years ago

2.0.189

3 years ago

2.0.180

3 years ago

2.0.178

3 years ago

2.0.176

3 years ago

2.0.173

3 years ago

2.0.171

3 years ago

2.0.169

3 years ago

2.0.168

3 years ago

2.0.170

3 years ago

2.0.167

3 years ago

2.0.166

3 years ago

2.0.165

3 years ago

2.0.164

3 years ago

2.0.163

3 years ago

2.0.160

3 years ago