Search Issue Tracker
By Design
Votes
0
Found in
5.2.0f3
Issue ID
726210
Regression
Yes
AudioSource.GetOutputData does not receive audio data in script when AudioSource is muted
How to reproduce:
1. Open attached project
2. Open scene unity5-School.unity
3. Play the scene
4. Hum into the microphone, slowly increasing the pitch
- Note how the speedometer increases properly
5. Select the gameobject Canvas_meters
6. Mute the Audio Source
7. Hum into the microphone again
- Note that the speedometer does not react (unlike the people in the same room)
- A workaround is to route the Audio Source into a specific mixer channel with the channel's volume set to low
By Design:
- The behaviour of this has changed to fix the conceptually broken behaviour of GetOutputData.
- It doesn't make sense to have an AudioSource muted, effectively producing no signal, and have getOutputData return signal. This fix was put in place to bring the behaviour inline with what is conceptually happening with the signal path.
- To achieve the old behaviour, have the AudioSource route into an AudioGroup of an AudioMixer that is fully attenuated. That way the data can be read from the mic audioSource and not be played through the speakers.
Comments (19)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Quest] Pitch Shifter causes audio degradation on Quest 2 devices when sped up
- "GUI Error: Invalid GUILayout" and "NullReferenceException" are thrown when adding Scenes to "Scenes in Baking Set" in Adaptive Probe Volumes
- Inspector window not updating when switching GameObjects in Play Mode while having a VR headset connected
- “UnityException: GetInvalidFilenameChars” errors are thrown, and the Overlay Save Preset button becomes unusable when entering Play Mode with a shortcut while Overlay Save Preset window is opened
- "UnityException: GetName can only be called from the main thread." erors are thrown when the Shortcuts window is opened and entering Play Mode with a shortcut
williamwalters
Aug 01, 2024 04:48
Thanks for your sharing
kedford6
Jul 12, 2023 08:48
I have accessed the documents you provided here. They are very helpful to me