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
- ScrollView clips content when under an ancestor that has a filter set
- "Retrieving array element that was out of bounds" error thrown when attempting to remove a column from a Multi-Column List View
- Multi-Column List View horizontal scroll resets to left most position when scrolling vertically
- Floating License is lost for concurrent jobs
- Warning "Failed to insert item" is logged when Assigning Project to Organization's Project in the Project Settings
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).