mirror of https://github.com/OpenVidu/openvidu.git
openvidu-testapp: RecordingProperty ignoreFailedStreams
parent
43339f7df8
commit
d27e5c9658
|
@ -18,6 +18,8 @@
|
||||||
<div class="inner-text-input mat-form-field">
|
<div class="inner-text-input mat-form-field">
|
||||||
<mat-checkbox id="rec-hasaudio-checkbox" [(ngModel)]="recordingProperties.hasAudio">Has audio</mat-checkbox>
|
<mat-checkbox id="rec-hasaudio-checkbox" [(ngModel)]="recordingProperties.hasAudio">Has audio</mat-checkbox>
|
||||||
<mat-checkbox id="rec-hasvideo-checkbox" [(ngModel)]="recordingProperties.hasVideo">Has video</mat-checkbox>
|
<mat-checkbox id="rec-hasvideo-checkbox" [(ngModel)]="recordingProperties.hasVideo">Has video</mat-checkbox>
|
||||||
|
<mat-checkbox *ngIf="recordingProperties.outputMode === 'INDIVIDUAL'" id="rec-ignorefailedstreams-checkbox"
|
||||||
|
[(ngModel)]="recordingProperties.ignoreFailedStreams">Ignore failed streams</mat-checkbox>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -68,6 +68,7 @@ export class SessionApiDialogComponent {
|
||||||
frameRate: this.recordingProperties.frameRate,
|
frameRate: this.recordingProperties.frameRate,
|
||||||
hasAudio: this.recordingProperties.hasAudio,
|
hasAudio: this.recordingProperties.hasAudio,
|
||||||
hasVideo: this.recordingProperties.hasVideo,
|
hasVideo: this.recordingProperties.hasVideo,
|
||||||
|
ignoreFailedStreams: this.recordingProperties.ignoreFailedStreams,
|
||||||
shmSize: this.recordingProperties.shmSize,
|
shmSize: this.recordingProperties.shmSize,
|
||||||
mediaNode: !this.recordingProperties.mediaNode.id ? undefined : this.recordingProperties.mediaNode
|
mediaNode: !this.recordingProperties.mediaNode.id ? undefined : this.recordingProperties.mediaNode
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,6 +101,7 @@ export class OpenviduInstanceComponent implements OnInit, OnChanges, OnDestroy {
|
||||||
frameRate: 25,
|
frameRate: 25,
|
||||||
shmSize: 536870912,
|
shmSize: 536870912,
|
||||||
customLayout: '',
|
customLayout: '',
|
||||||
|
ignoreFailedStreams: false,
|
||||||
mediaNode: {
|
mediaNode: {
|
||||||
id: ''
|
id: ''
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue