mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser/node-client: media-server to media-node
parent
67de82ba20
commit
b1e865f24c
|
@ -46,7 +46,7 @@ export class RecordingEvent extends Event {
|
|||
* - "recordingStoppedByServer": the recording has been gracefully stopped by the application
|
||||
* - "sessionClosedByServer": the Session has been closed by the application
|
||||
* - "automaticStop": see [Automatic stop of recordings](https://openvidu.io/docs/advanced-features/recording/#automatic-stop-of-recordings)
|
||||
* - "mediaServerDisconnect": OpenVidu Media Server has crashed or lost its connection. A new media server instance is active and the recording has been stopped (no media streams are available in the new media server)
|
||||
* - "mediaServerDisconnect": OpenVidu Media Node has crashed or lost its connection. A new Media Node instance is active and the recording has been stopped (no media streams are available in the new Media Node)
|
||||
*
|
||||
* For 'recordingStarted' empty string
|
||||
*/
|
||||
|
|
|
@ -43,7 +43,7 @@ export class StreamEvent extends Event {
|
|||
* - "forceDisconnectByServer": the user has been evicted from the Session by the application
|
||||
* - "sessionClosedByServer": the Session has been closed by the application
|
||||
* - "networkDisconnect": the user's network connection has dropped
|
||||
* - "mediaServerDisconnect": OpenVidu Media Server has crashed or lost its connection. A new media server instance is active and no media streams are available in the media server
|
||||
* - "mediaServerDisconnect": OpenVidu Media Node has crashed or lost its connection. A new Media Node instance is active and no media streams are available in the Media Node
|
||||
*
|
||||
* For 'streamCreated' empty string
|
||||
*/
|
||||
|
|
|
@ -26,7 +26,7 @@ export enum MediaMode {
|
|||
RELAYED = 'RELAYED',
|
||||
|
||||
/**
|
||||
* The session will transmit streams using OpenVidu Media Server
|
||||
* The session will transmit streams using OpenVidu Media Node
|
||||
*/
|
||||
ROUTED = 'ROUTED'
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ import { RecordingMode } from './RecordingMode';
|
|||
export interface SessionProperties {
|
||||
|
||||
/**
|
||||
* How the media streams will be sent and received by your clients: routed through OpenVidu Media Server
|
||||
* How the media streams will be sent and received by your clients: routed through OpenVidu Media Node
|
||||
* (`MediaMode.ROUTED`) or attempting direct p2p connections (`MediaMode.RELAYED`, _not available yet_)
|
||||
*/
|
||||
mediaMode?: MediaMode;
|
||||
|
|
Loading…
Reference in New Issue