2017-09-22 15:57:59 +02:00
|
|
|
/*
|
2022-01-13 11:18:47 +01:00
|
|
|
* (C) Copyright 2017-2022 OpenVidu (https://openvidu.io)
|
2017-09-22 15:57:59 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-08-27 17:06:14 +02:00
|
|
|
import { Filter } from '../../../OpenVidu/Filter';
|
2022-01-27 14:42:01 +01:00
|
|
|
import { TypeOfVideo } from '../../Enums/TypeOfVideo';
|
2018-07-27 14:32:53 +02:00
|
|
|
|
2018-04-26 15:33:47 +02:00
|
|
|
export interface StreamOptionsServer {
|
|
|
|
id: string;
|
2019-01-09 17:35:34 +01:00
|
|
|
createdAt: number;
|
2018-07-03 15:35:08 +02:00
|
|
|
hasAudio: boolean;
|
|
|
|
hasVideo: boolean;
|
2018-04-26 15:33:47 +02:00
|
|
|
audioActive: boolean;
|
|
|
|
videoActive: boolean;
|
2022-01-27 14:42:01 +01:00
|
|
|
typeOfVideo: TypeOfVideo;
|
2018-07-03 15:35:08 +02:00
|
|
|
frameRate: number;
|
|
|
|
videoDimensions: string;
|
2018-07-27 14:32:53 +02:00
|
|
|
filter: Filter;
|
2022-08-17 18:04:05 +02:00
|
|
|
}
|