social_media_recorder
一个适用于Android和iOS的Flutter包,它提供了一个从麦克风录音到给定文件路径的音频录音器,通过按钮录制像社交媒体按钮一样的语音。
视频
Android
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
...
android:requestLegacyExternalStorage="true">
最低SDK:16
iOS
<key>NSMicrophoneUsageDescription</key>
<string>We need to access to the microphone to record audio file</string>
最低SDK:8.0
用法
Align(
alignment: Alignment.centerRight,
child: RecorderReplaysAndComments(
sendRequestFunction: (soundFile) {
# soundFile represent the sound you recording
},
),
);
