Getting Started
Getting Started..
Playback
The complete running example is there
1. FlutterSoundPlayer instanciation
To play back something you must instanciate a player. Most of the time, you will need just one player, and you can place this instanciation in the variables initialisation of your class :
2. Open and close the audio session
Before calling startPlayer()
you must open the Session.
When you have finished with it, you must close the session. A good places to put those verbs are in the procedures initState()
and dispose()
.
3. Play your sound
To play a sound you call startPlayer()
. To stop a sound you call stopPlayer()
Recording
The complete running example is there
1. FlutterSoundRecorder instanciation
To play back something you must instanciate a recorder. Most of the time, you will need just one recorder, and you can place this instanciation in the variables initialisation of your class :
2. Open and close the audio session
Before calling startRecorder()
you must open the Session.
When you have finished with it, you must close the session. A god place to pute those verbs is in the procedures initState()
and dispose()
.
3. Record something
To record something you call startRecorder()
. To stop the recorder you call stopRecorder()
Last updated
Was this helpful?