Index / Blog / Flutter Audio

Introducing Flutter Audio

An open-source Flutter plug-in for recording speech

December 2019

We’re big fans here at Evrone of Google’s Flutter SDK for building Android and iOS apps, but when we were building Medcorder, we ran into a problem: there wasn’t a way to record speech using the Google-provided APIs. The client who we were developing Medcorder for came up with the idea of the development of the audio recording plugin as an open source contribution. So, we built an audio recording plug-in for the project!

Medcorder is a mobile application that records and helps decode conversations with doctors and other medical staff. The information that’s captured can then be passed on to relatives and other specialists so that they don’t miss any key details from a consultation.

There are three parts to Flutter Audio:

  • The interface, which like Flutter itself, is pure Dart
  • A native component written in Objective-C does the heavy lifting on iOS
  • Meanwhile, on Android, we developed an equivalent in Java

After the plug-in was created, our client offered us the opportunity to release it as open source, which we were very happy to do.

It’s worth noting that Flutter Audio was originally created — and is optimised — for Google's Speech Recognition services, and the interface is designed with ease-of-use in mind and doesn’t offer fine-grained control over the recording settings. We’re quite happy with the “do one thing and do it well” approach that we’ve taken, and so we’re not accepting pull requests that seek to alter the audio profiles or expose recording parameters. We’re very pleased to see that there have been quite a few forks of the project on GitHub aimed at different applications, and we’ll continue to watch them with interest.

We don’t know what Google’s plans for official audio recording capabilities in Flutter might be, but we’re delighted by the engagement Flutter Audio’s had from the community so far.

Using Flutter Audio is straightforward. First, you’ll need an instance of MedcorderAudio:

MedcorderAudio audioModule = new MedcorderAudio();

Then, you need to make sure that you can actually record audio on your device and apply the audio settings required for speech recording. We’d typically do this in our initState method with something along the lines of the following:

final String result = await audioModule.checkMicrophonePermissions();
if (result == 'OK') {
  await audioModule.setAudioSettings();
  setState(() {
    canRecord = true;
  });
}

Once you know you can record, use the audioModule to start recording in an event handler invoked when a user pushes a button:

try {
  final String result = await audioModule.startRecord(filename);
  setState(() {
    isRecord = true;
  });
  print('startRecord: ' + result);
} catch (e) {
  print('startRecord: failed');
}

…and stopping recording again is just as straightforward:

final String result = await audioModule.stopRecord();
print('stopRecord: ' + result);
setState(() {
  isRecord = false;
});

To help you get started, we’ve put all of this into an example app for iOS and Android. See in particular the main.dart that actually interacts with the plug-in.

In the event that you encounter a bug, please do open an issue and we’ll try to squash it as soon as we can.

We hope you find Flutter Audio (and its variants) useful, and we’re excited to see what people do with it!

 

 
I love seeing new plugins like Flutter Audio by Evrone: tightly focused on doing one thing well. Lots of interesting ways to use this for mobile apps. Thanks Evrone for making Flutter better!
Tim Sneath
Director of Product and UX for Flutter & Dart, Google
We are more than happy to merge PRs that fix bugs. The main problems that the contributors helped solve are related to compatibility with the latest versions of Android, many of the proposals were accepted.
Dmitry Krivolapov
Developer, Evrone.com
Let’s talk about you
Attach file
Files must be less than 8 MB.
Allowed file types: jpg jpeg png txt rtf pdf doc docx ppt pptx.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.