作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Dialogflow 构建 ChatBot 应用程序,并且我想在我的应用程序中实现语音识别功能。如您所知,Dialogflow 为我们提供了一项基于音频检测意图的功能,但它仅接受 base64 形式的音频。我的问题是我无法将音频文件编码为 Base64。我是 Flutter 开发的新手,所以如果我遗漏了什么或以错误的方式做,请告诉我。谢谢!
我试过这种方法,但它没有给我正确的输出:
Future<String> makeBase64(String path) async {
try {
if (!await fileExists(path)) return null;
File file = File(path);
file.openRead();
var contents = await file.readAsBytes();
var base64File = base64.encode(contents);
return base64File;
} catch (e) {
print(e.toString());
return null;
}
}
最佳答案
你可以这样做:
List<int> fileBytes = await file.readAsBytes();
String base64String = base64Encode(fileBytes);
final fileString = 'data:audio/mp3;base64,$base64String';
关于Flutter:如何对 Base64 格式的音频文件进行编码和解码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60202639/
我是一名优秀的程序员,十分优秀!