File created by the library is not available in ios:
String path = await flutterSound.startRecorder(null);
_file = io.File(path);
path in mobil file:///private/var/mobile/Containers/Data/Application/2272A03E-2497-416C-98EC-69109A431A8B/tmp/sound.m4a
If you need to specify permissions in ios or what path to add?
Did you try the example project?
Did you try the example project?
the problem was solved by cutting from the return path "file://"
String path = await flutterSound.startRecorder(null);
path = path.replaceAll(RegExp("file://"), "");
_file = io.File(path);
Thanks for sharing your experience. I might have to check this one out.
This issue is stale because it has been open 90 days with no activity. Leave a comment or this will be closed in 7 days.
Most helpful comment
the problem was solved by cutting from the return path "file://"
String path = await flutterSound.startRecorder(null); path = path.replaceAll(RegExp("file://"), ""); _file = io.File(path);