Search Issue Tracker
By Design
Votes
0
Found in
2018.2.11f1
2018.3.0a1
2019.1.0a1
2019.2.0a1
Issue ID
1109254
Regression
No
Audio is downloaded completely instead of being streamed while using DownloadHandlerAudioClip.streamAudio
To reproduce:
1. Open project
2. Enter the Play Mode
Reproducible with: 2018.3.3f1, 2019.1.0a14, 2019.2.0a1
2017.4 does not support streamAudio
Actual results: DownloadHandlerAudioClip.streamAudio fails and instead downloads the full audio clip
Expected results: DownloadHandlerAudioClip.streamAudio should be able to stream audio
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
- URP Realtime reflection probes do not update when RenderProbe() is being called once per second
- Addressable terrain shader variants are stripped from the Player
- [iOS] Debug.Log() appears as <private> in Console app
- UI stays in the background when it is disabled in simulator
- A wrong log file is attached when project is launched with a "-logFile" command line argument
Resolution Note:
The users placed DownloadHandlerAudioClip.GetContent in a try-catch that hides the reason: "Cannot get content from an unfinished UnityWebRequest object"
Instead, user should do downloadHandler.audioClip, which will return an audio clip.
Note, that it is strongly recommended to wait for request.downloadedBytes to become greater than zero before accessing audioClip property, our audio system requires to know the size of the audio file when creating audio clip (when we already have downloaded some bytes, we already received Content-Length header and know the size).