I using a package called flutter_sound to record audio in Web but the result after finish the record is like that
blob:http://localhost:54779/f1b68f68-8007-4168-abd3-3de5ec8cabbe
how to convert it to a Uint8List in flutter to upload it to anything such as firestore.
2
Answers
Try to read for an answer here: How to get a Uint8List from a Network image by url in Flutter?
You have a binary object that you have url to. Just download it and store it as UIntList.
audioFilePath
is the blob url actually, can be found in startPlayer method indemo.dart
file for example.Hope this helps.