Chime SDK uses Vue JS to display all video tiles and live attendee list display
P粉956441054
P粉956441054 2023-09-01 15:49:40
0
1
444
<p><em>I have heard of local tiles and remote tiles many times when it comes to shared video conferencing. I'm trying to display all attendee video tiles but am facing difficulties while making the app from scratch using Vue JS as I'm new to using AWS Chime SDK. I have the following questions. </em></p> <p><code>What is the difference between local tiles (getAllVideoTiles) and remote tiles (getAllRemoteVideoTiles)? </code></p> <p><code>How do I display video tiles for all attendees along with their names? </code></p> <p><code>How do I add attendee names? Where should I pass it? createAttendee or createMeeting API? </code></p> <p><code>How to identify the host? </code></p> <p><code>How do I add a live chat and connected attendees list to a meeting? </code></p> <p><code>The React library is available. The Javascript demo is also a lot of code, and I don’t think it’s very helpful for novices to understand. Is there any chance for Vue JS and its Demo? </code></p> <p><em>Your answer will be very helpful and appreciated for any new developers in the near future. Thank you so much. </em></p> <p>Currently, I have an observer that only displays myself and an attendee tile. </p> <pre class="brush:php;toolbar:false;">videoTileDidUpdate: tileState => { const audioElement = this.$refs.audioElement; const isDefaultVideo = tileState.tileId === 1; this.audioVideo.bindAudioElement(audioElement); this.audioVideo.bindVideoElement( tileState.tileId, isDefaultVideo ? this.$refs.defaultVideoElement : this.$refs.attendeeVideoElement ); } <audio ref="audioElement"></audio> <video ref="defaultVideoElement"></video> <video ref="attendeeVideoElement"></video></pre></p>
P粉956441054
P粉956441054

reply all(1)
P粉608647033

What I understood while reading the aws-sdk documentation and completing it, I'm sharing my own understanding which may help someone in the future.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!