1.0.1 • Published 2 years ago

rakesh-test v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

React Native AntMedia

rn-antmedia on NPM

Essential SDK to use antmedia with React native.

Table of content

  1. What is RN AntMedia?
  2. Getting Started
  3. Using
  4. Hook Parameters
  5. Hook returned adaptor
  6. Help this project

1. What is RN AntMedia?

RN AntMedia is an port of web sdk of antmedia webrtc_adaptor to react-native using react-native-webrtc. Some functionalities still the same but others have some differences.

Some functionalities are under development.

2. Getting Started

NOTE for Expo users: this plugin doesn't work unless you eject since you need to install react-native-webrtc too.

npm

	npm i rn-antmedia react-native-webrtc

yarn

	yarn add rn-antmedia react-native-webrtc

3. Usage

To know how to use you need to see examples in examples folder, i'm working on new examples.

4. Hooks Parameters

When you call a hook function, you need to pass some of this params to work, by default the hook will start getUserMedia with mediaConstraints.

Params with * is mandatory acctually

  • *url: string with url to your antmedia server example "wss://testserver.com/WebRTCAppEE/websocket"
  • *mediaConstraints: object with constraints to getUserMedia (react-native-webrtc)
  • *sdp_constraints: object with constraints to RTCSessionDescription (react-native-webrtc)
  • peerconnection_config: object with peerconnection configurartion (react-native-webrtc) -debug: boolean to show some messages on the console as some catch errors in the lib, false by default. -onlyDataChannel: boolean to init only in dataChannel mode.
  • *bandwidth: object with bandwidth config number or string example 300 or "unlimited"
  • callback: callback function when some event is fired by antmedia server by websocket - callback(this, message, data) - callback-this: is object returned by hook to use internally in callback - callback-message: is message returned by antmedia server - callback-data: is data returned by antmedia server (by the event could be undefined)
  • *callbackError: callback function when some error event is fired by antmedia server by websocket - callbackError(errorMessage, data) - callbackError-errorMessage: error message from antmedia event - callbackError-data: error data
  • *onopen: callback function called when connection is done between antmedia server and client - onopen-data: is data returned by onopen event in websocket connection

5. Hook returned adaptor

Params with * is mandatory

  • publish(*streamId, token): based on publish by antmedia webrtcAdaptor
  • joinRoom(*room, streamId): based on joinRoom by antmedia webrtcAdaptor
  • leaveFromRoom(room: string): based on leaveFromRoom by antmedia webrtcAdaptor
  • join(*streamId): based on join by antmedia webrtcAdaptor
  • leave(*streamId): based on leave by antmedia webrtcAdaptor
  • play(*streamId, token, room): based on play by antmedia webrtcAdaptor
  • stop(*streamId): based on stop by antmedia webrtcAdaptor
  • peerMessage(streamId, definition, *data): based on peerMessage by antmedia webrtcAdaptor
  • sendData(streamId, message): based on sendData by antmedia webrtcAdaptor
  • localStream: this is local stream when the hook is started
  • remoteStreams: this is object with remote streams when have connection between peers.
  • getUserMedia(*mediaConstrants): based on getUserMedia (react-native-webrtc)
  • getStreamInfo(*streamId): based on getStreamInfo by antmedia webrtcAdaptor
  • signallingState(*streamId): this function return the signalling state of the gived stream id
  • initPeerConnection(*streamId): funcion to initPeerConnection between the stream id and the user
  • handleTurnVolume(): function to turn on/off the volume (by default is turned on)
  • handleTurnCamera(): function to turn on/off the camera (by default is turned on)
  • isTurnedOf: boolean to return the state of camera (true is turned on)
  • isMuted: boolean to return the state of volume (true is turned on)

6. Help this project

How could you help this project: open an issue when you find some error, open an pull request when you find the solution.

If this project help you, please consider to help me to develop this project continuously.

paypal