我需要录制语音并使用Firebase
发送。我正在使用flutter_sound
,但该插件不会生成记录的文件,我也不知道为什么。
Future<String> result =flutterSound.startRecorder(null,androidEncoder: AndroidEncoder.AMR_WB);
result.then((value){
print('startRecorder: $value');
_recorderSubscription = flutterSound.onRecorderStateChanged.listen((e) {
DateTime date = new DateTime.fromMillisecondsSinceEpoch(e.currentPosition.toInt());
String txt = DateFormat('mm:ss:SS', 'en_US').format(date);
print(txt);
});
});