so I was trying to upload files (png, pdf etc) to backend endpoint and it works on both android and iOS and there's a recorder in the app it returns m4a files when I try to upload the m4a files using the same function it works on iOS and the file gets uploaded but it doesn't work on android Do you know why is that?
Here's the recorder code:
final recorder = Record();
record() async {
bool recording = await recorder.isRecording();
if (recording) {
String? path = await recorder.stop();
await recorder.dispose();
if (path != null) {
attachments ??= [];
File file = File(Platform.isIOS ? path.substring(7) : path);
bool fileExits = await file.exists();
if (fileExits) {
attachments?.add(file);
}
setState(() {
isRecording = false;
});
}
} else {
if (await recorder.hasPermission()) {
setState(() {
isRecording = true;
});
await recorder.start(
encoder: AudioEncoder.aacLc,
bitRate: 128000,
);
await Future.delayed(const Duration(minutes: 3), () async {
if (await recorder.isRecording()) {
String? path = await recorder.stop();
await recorder.dispose();
if (path != null) {
attachments ??= [];
File file = File(Platform.isIOS ? path.substring(7) : path);
bool fileExits = await file.exists();
if (fileExits) {
attachments?.add(file);
}
setState(() {
isRecording = false;
});
}
}
});
}
}
}
Here's the function:
static Future<String?> uploadFile(File file, String token) async {
// final fileLength = await image.length();
String? imageURL;
var request =
http.MultipartRequest('POST', Uri.parse(APIEndPoints.uploadFiles));
request.headers['Authorization'] = 'Bearer $token';
request.headers['Content-Type'] = 'application/json';
request.files.add(await http.MultipartFile.fromPath('file', file.path));
http.StreamedResponse res = await request.send();
String responseBody = await res.stream.bytesToString();
if (res.statusCode == 200) {
imageURL = '${APIEndPoints.baseUrl}/${jsonDecode(responseBody)['url']}';
}
print(res.statusCode);
print(responseBody);
return imageURL;
}
I use the Record Plugin and will show you how I do it. I save the file in the temporary directory.
You get temporary directory with Path Provider.
Then use the dir and set path for the temporary file.
and when the audio stops, you use the path from the recorder.
Also, for when recorder starts and stops, I wait for about 400 milliseconds. I found that there is some delay, which I didn't delve into yet. The full code is below for your reference.