i2edu 64e73b6d74 修复本地播放问题 4 năm trước cách đây
..
android c06a8ab93d init commit 4 năm trước cách đây
ios c06a8ab93d init commit 4 năm trước cách đây
lib c06a8ab93d init commit 4 năm trước cách đây
res c06a8ab93d init commit 4 năm trước cách đây
test c06a8ab93d init commit 4 năm trước cách đây
.flutter-plugins-dependencies 64e73b6d74 修复本地播放问题 4 năm trước cách đây
.gitignore c06a8ab93d init commit 4 năm trước cách đây
.metadata c06a8ab93d init commit 4 năm trước cách đây
README.md c06a8ab93d init commit 4 năm trước cách đây
flutter_sound_example.iml c06a8ab93d init commit 4 năm trước cách đây
flutter_sound_example_android.iml c06a8ab93d init commit 4 năm trước cách đây
pubspec.yaml c06a8ab93d init commit 4 năm trước cách đây

README.md

flutter_sound_example

This is not a playlist audio module and this library provides simple recorder and player functionalities for both android and ios platforms. This only supports default file extension for each platform. This module can also handle file from url.

Getting Started

For help getting started with Flutter, view our online documentation.

Install

Add flutter_sound as a dependency in pubspec.yaml For help on adding as a dependency, view the documentation.

Post Installation

On iOS you need to add a usage description to info.plist:

<key>NSMicrophoneUsageDescription</key>
<string>This sample uses the microphone to record your speech and convert it to text.</string>
<key>UIBackgroundModes</key>
<array>
	<string>audio</string>
</array>

On Android you need to add a permission to AndroidManifest.xml:

<uses-permission android:name="android.permission.RECORD_AUDIO" />