ryanheise
ryanheise
From my suggestion above: ``` final assetFile = File(...); // where you want to extract the asset to - typically the cache/temporary dir ``` In other words. you want to...
@Jens05 Feel free to make a separate feature request for that.
`asset:///audio/nature.mp3` and `asset:/audio/nature.mp3` makes no difference. They are equivalent because `Uri.parse` has a single implementation across all platforms and always returns `scheme=asset` and `path=/audio/nature` for either URI. @Jens05 I suspect...
As mentioned above, I would recommend opening a separate issue regarding artwork as otherwise it can be difficult for me to manage the different issues.
You didn't follow the instructions for submitting a minimal steps reproduction project. I will need the link.
For sanity, can you try rewriting the same example but hosting the remote file in WAV format rather than JSON? That will make it easier to confirm whether you have...
I haven't figured out why it doesn't work yet, however I have discovered that your code will work if you use mp3 instead of wav, so there might be a...
You can't convert those wav files to MP3 using ffmpeg or similar?
Another workaround that should work is to download the json, reconstruct the raw byte data, write that to a file with a `.wav` filename extension, and then use `AudioSource.uri` with...
Glad to hear. Let's still keep this issue open, though, since I will eventually want to look into why `StreamAudioSource` isn't working with wav content.