2022-01-26 16:01:12 +01:00
|
|
|
<div id="layout" class="bounds">
|
2022-02-03 17:08:23 +01:00
|
|
|
<div
|
|
|
|
class="OT_root OT_publisher"
|
|
|
|
id="localUser"
|
|
|
|
*ngFor="let connection of localParticipant | connections"
|
|
|
|
[ngClass]="{ OV_small: !connection.streamManager?.stream?.videoActive }"
|
|
|
|
>
|
|
|
|
<ng-container *ngTemplateOutlet="streamTemplate; context: { stream: connection }"></ng-container>
|
|
|
|
</div>
|
|
|
|
<!-- <ng-template #stream let-stream="stream">
|
|
|
|
<p>{{prueba.videoEnlarged}}</p>
|
|
|
|
<ov-stream [participant]="prueba"></ov-stream>
|
|
|
|
</ng-template> -->
|
2022-01-26 16:01:12 +01:00
|
|
|
|
2022-02-03 17:08:23 +01:00
|
|
|
<div
|
|
|
|
*ngFor="let connection of remoteParticipants | connections"
|
|
|
|
class="OT_root OT_publisher"
|
|
|
|
id="remote-participant"
|
|
|
|
[ngClass]="{ OV_small: !connection.streamManager?.stream?.videoActive }"
|
|
|
|
>
|
|
|
|
<ng-container *ngTemplateOutlet="streamTemplate; context: { stream: connection }"></ng-container>
|
|
|
|
</div>
|
2022-01-26 16:01:12 +01:00
|
|
|
</div>
|