record_mp3 1.0.1 record_mp3: ^1.0.1 copied to clipboard
Record an MP3 using the Platform native API,You can start ,pause,resume and stop record,And export an MP3 file.
Record Mp3 #
Record an MP3 using the platform native API
Depend on it #
Add this to your package's pubspec.yaml file:
dependencies:
record_mp3: ^1.0.1
Usage #
iOS #
Make sure you add the following key to Info.plist for iOS
<key>NSMicrophoneUsageDescription</key>
<string>xxxxxx</string>
Example #
import 'package:record_mp3/record_mp3.dart';
//start record
RecordMp3.instance.start(recordFilePath, (type) {
// record fail callback
});
//pause record
RecordMp3.instance.pause();
//resume record
RecordMp3.instance.resume();
//complete record and export a record file
RecordMp3.instance.stop();