3.9.2 • Published 2 months ago

mediasoup-client v3.9.2

Weekly downloads
13,038
License
ISC
Repository
github
Last release
2 months ago

mediasoup-client v3

TypeScript client side library for building mediasoup based applications.

Website and Documentation

Support Forum

Usage Example

import { Device } from 'mediasoup-client';
import mySignaling from './my-signaling'; // Our own signaling stuff.

// Create a device (use browser auto-detection).
const device = new Device();

// Communicate with our server app to retrieve router RTP capabilities.
const routerRtpCapabilities = await mySignaling.request(
	'getRouterCapabilities'
);

// Load the device with the router RTP capabilities.
await device.load({ routerRtpCapabilities });

// Check whether we can produce video to the router.
if (!device.canProduce('video')) {
	console.warn('cannot produce video');

	// Abort next steps.
}

// Create a transport in the server for sending our media through it.
const { id, iceParameters, iceCandidates, dtlsParameters, sctpParameters } =
	await mySignaling.request('createTransport', {
		sctpCapabilities: device.sctpCapabilities,
	});

// Create the local representation of our server-side transport.
const sendTransport = device.createSendTransport({
	id,
	iceParameters,
	iceCandidates,
	dtlsParameters,
	sctpParameters,
});

// Set transport "connect" event handler.
sendTransport.on('connect', async ({ dtlsParameters }, callback, errback) => {
	// Here we must communicate our local parameters to our remote transport.
	try {
		await mySignaling.request('transport-connect', {
			transportId: sendTransport.id,
			dtlsParameters,
		});

		// Done in the server, tell our transport.
		callback();
	} catch (error) {
		// Something was wrong in server side.
		errback(error);
	}
});

// Set transport "produce" event handler.
sendTransport.on(
	'produce',
	async ({ kind, rtpParameters, appData }, callback, errback) => {
		// Here we must communicate our local parameters to our remote transport.
		try {
			const { id } = await mySignaling.request('produce', {
				transportId: sendTransport.id,
				kind,
				rtpParameters,
				appData,
			});

			// Done in the server, pass the response to our transport.
			callback({ id });
		} catch (error) {
			// Something was wrong in server side.
			errback(error);
		}
	}
);

// Set transport "producedata" event handler.
sendTransport.on(
	'producedata',
	async (
		{ sctpStreamParameters, label, protocol, appData },
		callback,
		errback
	) => {
		// Here we must communicate our local parameters to our remote transport.
		try {
			const { id } = await mySignaling.request('produceData', {
				transportId: sendTransport.id,
				sctpStreamParameters,
				label,
				protocol,
				appData,
			});

			// Done in the server, pass the response to our transport.
			callback({ id });
		} catch (error) {
			// Something was wrong in server side.
			errback(error);
		}
	}
);

// Produce our webcam video.
const stream = await navigator.mediaDevices.getUserMedia({ video: true });
const webcamTrack = stream.getVideoTracks()[0];
const webcamProducer = await sendTransport.produce({ track: webcamTrack });

// Produce data (DataChannel).
const dataProducer = await sendTransport.produceData({
	ordered: true,
	label: 'foo',
});

Authors

Social

Sponsor

You can support mediasoup by sponsoring it. Thanks!

License

ISC

@unavi/react-clientrkcloud-rtcymediaclientdigitalstage-mediasoup-webtest-zj999streamtelcom.vanimeeting.doubtconnectlinkbox-rtc-clientvide-clientreact-native-huddle-client@infinitebrahmanuniverse/nolb-medihuddle01-client@everything-registry/sub-chunk-2150@madfi/jam-coreaudience-webxrplayer-sdktailchat-meeting-sdkvvsogi-framework-testwerdtestsubscribevideo-testvani-meeting-clientvani-meeting-client-betavani-meeting-client-nativevani-meeting-client-sdkvani-meeting-client-sdk-tempvideo-meetvideo-rtcvidscale-client-jsvideoedge-js@dogehouse/kebab@drtc/huddle-client@drtc/media-client@drtc/tests@drtc/types@crooz/shared-types@bunchtogether/webrtc-clientjam-corekwei-client-js-sdk@heitech/voice-library-npm@hoaivan0101/voice-library-npmoviceumvideo2-clienttlmeetingclient@arrowai/video@antares-tech/ms-client@dell-emc/react-native-meeting-sdkxw-gortc-serviceyatouze-video-chatzhduer-rtc@dytesdk/mobile@huddle01/web-core@huddle01/huddle01-client@etherealengine/client-core@livedigital/client@ir-engine/client-core@linkbox/rtc-sdk@netcom/cascade-sfu-client@jiomeet/jm-media-web@okukharenko/consumer@okukharenko/producer@otistav/meet_js_sdk@skyway-sdk/sfu-api-client@skyway-sdk/sfu-bot@skyway-sdk/sfu-client@roadzen/xstream-web@revkit/voicemoonstone-wrapperrn-mediasoupreact-native-akameet-sdksdk-gomeetreact-native-meeting-sdkreact-native-conusmaneo-media-connectornova-clientrkcloud-rtcskyway-recordergomeet-app-sdkgomeet_sdkgomeet_chaunikki_sdkhyperspeed.jsiamgrootclubhcw-stream-libh5-tutorapphx-roomclienthy-rtc-core-v3lifemate-conference-sdklsrtcmediasoup-client-aiortcmediasoup-client-utilsmediasoup-client-weriftmedia-infra-clientmedia-clientbxwang-livevideoconnect-call-clientcofor-webrtccom.vanimeeting.democom.vanimeeting.shivamcom.vanimeeting.uhcdogehousedodgy-kebabcvr-rui
3.7.18

6 months ago

3.9.2

2 months ago

3.9.1

3 months ago

3.9.0

3 months ago

3.8.0

5 months ago

3.8.2

3 months ago

3.8.1

5 months ago

3.7.17

8 months ago

3.7.15

9 months ago

3.7.16

9 months ago

3.7.13

10 months ago

3.7.14

10 months ago

3.7.11

11 months ago

3.7.12

11 months ago

3.7.10

11 months ago

3.7.9

12 months ago

3.7.8

1 year ago

3.7.7

1 year ago

3.7.5

1 year ago

3.7.6

1 year ago

3.7.4

1 year ago

3.7.3

1 year ago

3.7.2

1 year ago

3.7.1

1 year ago

3.6.101

2 years ago

3.6.102

2 years ago

3.6.103

2 years ago

3.7.0

2 years ago

3.6.100

2 years ago

3.6.89

2 years ago

3.6.88

2 years ago

3.6.87

2 years ago

3.6.86

2 years ago

3.6.85

2 years ago

3.6.99

2 years ago

3.6.98

2 years ago

3.6.97

2 years ago

3.6.96

2 years ago

3.6.95

2 years ago

3.6.94

2 years ago

3.6.93

2 years ago

3.6.92

2 years ago

3.6.91

2 years ago

3.6.90

2 years ago

3.6.79

2 years ago

3.6.78

2 years ago

3.6.77

2 years ago

3.6.76

2 years ago

3.6.75

2 years ago

3.6.74

2 years ago

3.6.73

2 years ago

3.6.72

2 years ago

3.6.71

2 years ago

3.6.84

2 years ago

3.6.83

2 years ago

3.6.82

2 years ago

3.6.81

2 years ago

3.6.80

2 years ago

3.6.69

2 years ago

3.6.68

2 years ago

3.6.67

2 years ago

3.6.66

2 years ago

3.6.65

2 years ago

3.6.64

2 years ago

3.6.63

2 years ago

3.6.62

3 years ago

3.6.61

3 years ago

3.6.60

3 years ago

3.6.70

2 years ago

3.6.59

3 years ago

3.6.58

3 years ago

3.6.57

3 years ago

3.6.56

3 years ago

3.6.55

3 years ago

3.6.54

3 years ago

3.6.53

3 years ago

3.6.52

3 years ago

3.6.51

3 years ago

3.6.48

3 years ago

3.6.49

3 years ago

3.6.50

3 years ago

3.6.47

3 years ago

3.6.46

4 years ago

3.6.45

4 years ago

3.6.44

4 years ago

3.6.43

4 years ago

3.6.42

4 years ago

3.6.41

4 years ago

3.6.40

4 years ago

3.6.39

4 years ago

3.6.38

4 years ago

3.6.37

4 years ago

3.6.36

4 years ago

3.6.35

4 years ago

3.6.34

4 years ago

3.6.33

4 years ago

3.6.32

4 years ago

3.6.31

4 years ago

3.6.30

4 years ago

3.6.29

4 years ago

3.6.28

4 years ago

3.6.27

4 years ago

3.6.26

4 years ago

3.6.25

4 years ago

3.6.24

4 years ago

3.6.23

4 years ago

3.6.22

4 years ago

3.6.21

5 years ago

3.6.20

5 years ago

3.6.19

5 years ago

3.6.18

5 years ago

3.6.17

5 years ago

3.6.16

5 years ago

3.6.15

5 years ago

3.6.14

5 years ago

3.6.13

5 years ago

3.6.12

5 years ago

3.6.11

5 years ago

3.6.10

5 years ago

3.6.9

5 years ago

3.6.8

5 years ago

3.6.6

5 years ago

3.6.7

5 years ago

3.6.5

5 years ago

3.6.4

5 years ago

3.6.3

5 years ago

3.6.2

5 years ago

3.6.1

5 years ago

3.6.0

5 years ago

3.5.5

5 years ago

3.5.4

5 years ago

3.5.3

5 years ago

3.5.2

5 years ago

3.5.1

5 years ago

3.5.0

5 years ago

3.3.18

5 years ago

3.3.17

5 years ago

3.3.16

5 years ago

3.3.15

5 years ago

3.3.14

5 years ago

3.3.13

5 years ago

2.4.12

5 years ago

3.3.12

5 years ago

3.3.10

5 years ago

3.3.11

5 years ago

3.3.9

5 years ago

3.3.8

5 years ago

3.3.7

5 years ago

3.3.6

5 years ago

3.3.5

5 years ago

3.3.4

5 years ago

3.3.3

5 years ago

3.3.2

5 years ago

3.3.1

6 years ago

3.3.0

6 years ago

3.2.11

6 years ago

3.2.10

6 years ago

3.2.9

6 years ago

3.2.8

6 years ago

2.4.11

6 years ago

3.2.7

6 years ago

3.2.6

6 years ago

3.2.5

6 years ago

3.2.4

6 years ago

3.2.3

6 years ago

3.2.2

6 years ago

3.2.1

6 years ago

3.2.0

6 years ago

3.1.6

6 years ago

3.1.5

6 years ago

3.1.4

6 years ago

3.1.3

6 years ago

3.1.2

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.8

6 years ago

3.0.7

6 years ago

3.0.6

6 years ago

3.0.5

6 years ago

3.0.4

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.4.10

6 years ago

2.4.9

6 years ago

2.4.8

6 years ago

2.4.7

6 years ago

2.4.6

6 years ago

2.4.5

6 years ago

2.4.4

6 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.1

6 years ago

2.4.0

7 years ago

2.3.2

7 years ago

2.3.1

7 years ago

2.3.0

7 years ago

2.2.0

7 years ago

2.1.6

7 years ago

2.1.5

7 years ago

2.1.4

7 years ago

2.1.3

7 years ago

2.1.2

7 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.18

7 years ago

2.0.17

7 years ago

2.0.16

7 years ago

2.0.15

7 years ago

2.0.14

7 years ago

2.0.13

7 years ago

2.0.12

7 years ago

2.0.11

7 years ago

2.0.10

7 years ago

2.0.9

7 years ago

2.0.8

7 years ago

2.0.7

7 years ago

2.0.6

7 years ago

2.0.5

7 years ago

2.0.4

7 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

0.8.1

8 years ago

0.8.0

8 years ago

0.7.0

8 years ago

0.6.10

8 years ago

0.6.9

8 years ago

0.6.8

8 years ago

0.6.7

8 years ago

0.6.6

8 years ago

0.6.5

8 years ago

0.6.4

8 years ago

0.6.3

8 years ago

0.6.2

8 years ago

0.6.1

8 years ago

0.6.0

8 years ago

0.4.0

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.1-pre

8 years ago