Closed junixapp closed 9 months ago
Really? Here's the start
method documentation.
https://github.com/llfbandit/record/blob/d289492ca18e623c8b0ba3ffe799be81b0c04266/record/lib/src/record.dart#L41-L47
You can't use files on web platform, only blobs. This is why stop
method returns the path of the audio recorded.
The browser generates an internal URL to access the blob.
You can use cross_file
package to deal with blobs/files for cross platform.
Hi there @llfbandit, Are you saying that we just need to pass the provided URL from the stop function to the cross-file loading method?
Yes.
This question might not be clear, but valid. Using the location of a file in Flutter web is extremely hard to find a documented solution for.