Obsolete
Status Update
Comments
ma...@google.com <ma...@google.com>
gk...@android.com <gk...@android.com>
co...@gmail.com <co...@gmail.com> #2
Hello,
I would like to update this post and ask to the owner if he has looked at this a little...
In facts I would also learn where i could to start to look in the android source (in the .cpp source) for pushing this on an android custom rom...
Thanks
I would like to update this post and ask to the owner if he has looked at this a little...
In facts I would also learn where i could to start to look in the android source (in the .cpp source) for pushing this on an android custom rom...
Thanks
kn...@gmail.com <kn...@gmail.com> #3
A similar issue report was just marked obsolete without an explanation. (see https://code.google.com/p/android/issues/detail?id=12519)
Does anyone involved here have any information or status updates?
Thanks much.
Does anyone involved here have any information or status updates?
Thanks much.
jo...@gmail.com <jo...@gmail.com> #4
I have deviced a really dirty workaround: First, Running a service that creates a list of apps with the RECORD_AUDIO permission in onCreate().
Second, the service should listen to apps being launched. If some Microphone-requiring app is detected running in the foreground, I should release the microphone.
Second, the service should listen to apps being launched. If some Microphone-requiring app is detected running in the foreground, I should release the microphone.
kr...@gmail.com <kr...@gmail.com> #5
I also need it!
vi...@gmail.com <vi...@gmail.com> #6
We are also waiting for this. On iOS there is not such problem because the mic is shared.
re...@gmail.com <re...@gmail.com> #7
I need this too. Why not simply make the mic stream accessible on a shared basis?
al...@gmail.com <al...@gmail.com> #8
I'd also really appreciate this feature
pg...@gmail.com <pg...@gmail.com> #9
same here.
if security is a concern:
1. A notification could by default show which apps are listening to the MIC,and the user could have the option of hiding that notification.
2. Alternatively a new permission could be added "SHARE_MICROPHONE" which would allow the app access to the MIC while other apps are accessing it.
if security is a concern:
1. A notification could by default show which apps are listening to the MIC,and the user could have the option of hiding that notification.
2. Alternatively a new permission could be added "SHARE_MICROPHONE" which would allow the app access to the MIC while other apps are accessing it.
b....@gmail.com <b....@gmail.com> #10
I think Android O supports this feature now? But onsure how to know if some other app is listening to the mic or not.
aj...@gmail.com <aj...@gmail.com> #11
I also need it!
tr...@gmail.com <tr...@gmail.com> #12
can we have this feature with in app? example: we are using WebRTC for video calling and at the same time, we would like to have text to speed feature.
to...@gmail.com <to...@gmail.com> #13
Please,i need it , desperately :)
az...@gmail.com <az...@gmail.com> #14
Yeah me too.
sn...@gmail.com <sn...@gmail.com> #15
Any luck?
Guys?
Guys?
hr...@gmail.com <hr...@gmail.com> #16
I dont know if it helps to anyone but i have a similar problem. I am developing a WebRTC app and i want to be albe to record video in native app during the WebRTC call in my app. I have found that it is possible only when headphones are not plugged in. I really dont understand why Android is blocking this MIC sharing only when headphones are plugged in, but maybe this is the way. Maybe there is an method in AudioManager that tells the phone to behave like there are no headphones plugged in?
ke...@gmail.com <ke...@gmail.com> #17
Any updates? I'm developing an app that runs recording to detect a word like "Ok Google" but it's blocking other audio apps (i.e whatsapp audios)
sa...@google.com <sa...@google.com> #18
Thank you for your feedback. We assure you that we are doing our best to address all issues reported. For now, we will be closing the issue as won't fix obsolete.
Description
Since only a single app can have access to the MIC at any given time. There needs to be a way to arbitrate MIC access between multiple apps. Or allow multiple apps to access MIC data simultaneously.
I would just like to find a way where my app (that needs to have the MIC ON for extended duration) can co-exist with other apps that also need the mic i.e Voice search, video recorder, and VoIP apps. Even if that means I need to give up the MIC when others need it.
Here is what currently happens :
1. App1 starts using the MIC
2. App2 tries to acquire the MIC and fails
Here is what I would like to be able to have (or something similar):
1. App1 starts using the MIC
2. App2 needs the MIC
3. App1 gets notified that there is another app that needs the MIC
4. App1 decides it can relinquish the MIC access temporarily
5. App2 is granted access to the MIC
6. App2 is done using the MIC
7. App1 regains the MIC access
Thanks!