Data url and blob url

In openfl(for H5), the binary processing is basically converted to data URL through base64(like Sound and BitmapData). Why not use blob url?
I haven’t been tested, but my subjective feeling is that the performance of converted strings will be affected.

I had worried about blob support on browsers but now I think I should not be

https://caniuse.com/#search=blob

Do you want to take a crack at a change?

1 Like

I agree that I can’t use Blob. Some small game platforms don’t support Blob. @Grimm

Using blob url does not mean abandoning data url completely. @rainy

I recommend using blobs when it’s available, because it has better performance in theory. :grin: