How to get event when your participant turned off audio?
Subscriber has a VideoListener which is notified when video state is changed, but how to get events for audio?
tokbox: how to determine when participant's audio is muted
865 views Asked by grey_crow At
1
There are 1 answers
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in AUDIO
- how to play a sounds in c# forms?
- Winsound not working isn't working at all
- Ringing noise overpowering voice / Recording audio with Max 9814 microphone on Raspberry pi pico using ADC Pin / Circuitpython
- How to take first x seconds of Audio from a wav file read from AWS S3 as binary stream using Python?
- gluon attach audio doesn't play any sound on android
- Implementing trim and fade filters with ffmpeg - MP3
- Unable to set device connection state as INPUT device type is none
- Is there a way to differentiate music and talking from a video?
- How to concatenate audio tracks and make them start a certain moment using Python?
- Combine two audio in different languages to one natural sounding
- STM32 - Serial Audio Interface (SAI) - dual data line transmit possible?
- playing mp3 downloaded via curllib gets cut short
- How to stream PCM audio to a speakers both on mac and linux in Node.js?
- Scikit-Maad -From the function rois.find_rois_cwt, I want to get a csv of the outputs so I can do my own analysis on it
- Using MediaPlayer slows down SoundPool sound effect
Related Questions in OPENTOK
- Difficulty importing @opentok/client library dynamically in React.Js, facing TypeScript error
- How to add placeholder image when the camera is close of subscriber ( using Vonage Opentok in flutter )
- CallKit : VOIP call is disconnecting when external call is declined
- Opentok react native cannot switch or open Back Camera
- How to video call between person and video use WebRTC?
- When app goes in background state client disconnected from openTok session - React Native
- Ask only for Mic permission Opentok
- Error opening archive: Unrecognized archive format
- Error when trying to use Open Tok with Swift
- React Native OpenTok Subscriber FullScreen
- Use Objective-C in Swift as a Library
- java.lang.ClassNotFoundException: Didn't find class "com.vonage.webrtc.voiceengine.BuildInfo"
- Android device shows microphone is actively being used even though session is paused and audio is disabled
- Android App is crashing While someone disconnect the opentok call from other devices
- Making voice calls from android and ios to any phone number
Related Questions in TOKBOX
- Autolay video for WebRTC application on iPhone
- Android device shows microphone is actively being used even though session is paused and audio is disabled
- Tokbox / Opentok Session has reached its connection limit
- Experienced sound volume issues with Tokbox/Vonage Video API on iPhone to iPhone calls?
- Javascript OpenTok doesn't release media
- OpenTok has duplicated sessions in MS Teams integration on IOS
- How to pass name in Opentok library using javascript?
- Is there any way of getting sessions created + destroying sessions on TokBox?
- how we open the Activity when app is in background in android
- Download OpenTok calls locally at the end of call
- how to show participants lists who are all joined the video call in opentok
- how to find whether a user is publisher or subscriber in opentok?
- How to remove 'app is using camera' notification in one plus device after vonage opentok tokbox video call is disconnected or completed?
- How to add text chat to opentok video chat
- Mute all participants except host - Tokbox
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You can use SubscriberKit.AudioLevelListener to see what the audio level of the subscriber is. This is based on the logarithmic scale ranging from 0 to 1.0 where 0 means no audio.
You can find more information on the implementation here: https://tokbox.com/developer/sdks/android/reference/
Update (06/10/20)
You can set a listener for the stream properties to determine if the stream's properties have changed while the stream is active. After setting this listener, the SDK will dispatch events each time a publisher mutes or unmutes their audio or video.