Agora-RN-Quickstart icon indicating copy to clipboard operation
Agora-RN-Quickstart copied to clipboard

How to show Image When Video is Mute

Open muhamadjawad opened this issue 3 years ago • 13 comments

hi, I just came with a problem that when ever i mute the video in video call i want ti show my image to the remote users but i cant do that .I used addwatermark also but that also threw error. Can any one please help me.

muhamadjawad avatar Nov 12 '21 13:11 muhamadjawad

You can add an image view to float to the render view.

LichKing-2234 avatar Nov 12 '21 14:11 LichKing-2234

Can u please provide an example.?

muhamadjawad avatar Nov 12 '21 17:11 muhamadjawad

https://stackoverflow.com/questions/29541971/absolute-and-flexbox-in-react-native

LichKing-2234 avatar Nov 15 '21 08:11 LichKing-2234

I m using curently this code for showing local Video.

    <View style={[styles.localView]}>
       <RtcLocalView.SurfaceView
         zOrderOnTop={true}
         style={{flex: 1}}
         channelId={channelName}

         // renderMode={VideoRenderMode.Hidden}
       />
     </View>

Now how can i show my image to all users in group call.??

muhamadjawad avatar Nov 15 '21 12:11 muhamadjawad

Using <RtcRemoteView.SurfaceView/>

LichKing-2234 avatar Nov 15 '21 13:11 LichKing-2234

but this is for remote users what about local view?

muhamadjawad avatar Nov 15 '21 13:11 muhamadjawad

<RtcLocalView.SurfaceView> for the local video <RtcRemoteView.SurfaceView> for the remote video

LichKing-2234 avatar Nov 15 '21 13:11 LichKing-2234

maybe you can refer to our example

https://github.com/AgoraIO-Community/react-native-agora/blob/master/example/src/examples/basic/JoinChannelVideo/JoinChannelVideo.tsx

LichKing-2234 avatar Nov 15 '21 13:11 LichKing-2234

But that code is for video call what about audio call??

muhamadjawad avatar Nov 15 '21 14:11 muhamadjawad

you should not use the view for the audio call.

LichKing-2234 avatar Nov 15 '21 14:11 LichKing-2234

then how can i show my image to remote users in audio call???

muhamadjawad avatar Nov 15 '21 14:11 muhamadjawad

Use your server to get the image URL the show it by the Image view.

LichKing-2234 avatar Nov 15 '21 14:11 LichKing-2234

Isnt there any option .I am trying to avoid server use here.As it will lag the call.

muhamadjawad avatar Nov 15 '21 14:11 muhamadjawad