2018-05-08 13:01:34 +02:00
|
|
|
import { Connection } from '../../../OpenVidu/Connection';
|
2018-10-01 11:17:05 +02:00
|
|
|
import { Filter } from '../../../OpenVidu/Filter';
|
2018-04-26 15:33:47 +02:00
|
|
|
export interface InboundStreamOptions {
|
|
|
|
id: string;
|
|
|
|
connection: Connection;
|
2018-07-11 11:47:53 +02:00
|
|
|
hasAudio: boolean;
|
|
|
|
hasVideo: boolean;
|
|
|
|
audioActive: boolean;
|
|
|
|
videoActive: boolean;
|
2018-04-26 15:33:47 +02:00
|
|
|
typeOfVideo: string;
|
2018-07-11 11:47:53 +02:00
|
|
|
frameRate: number;
|
|
|
|
videoDimensions: {
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
};
|
2018-10-01 11:17:05 +02:00
|
|
|
filter?: Filter;
|
2018-04-26 15:33:47 +02:00
|
|
|
}
|