Examples
This code does not pretend to show how to code! The purpose of those examples is just to show how to use the Flutter Sound API.
You can have a live run of those examples here.
The example itself is architectured as a driver coded in dart (which is not interesting at all) and a list of Dart Screens.
The examples code source are found here.
Table of contents
- Simple Playback - A very simple Playback that plays a remote file.
- Simple Recorder - A very simple Recorder.
- Dart Streams - Audio Streams with Flutter Sound,
- Record to stream - Record to a dart stream
- Play Stream without flow control - Play from a dart stream, without flow control.
- Play Stream with flow control - Play from a dart stream, with flow control.
- Player OnProgress - Simple setSubscriptionDuration()and onProgress() for a player
- Recorder OnProgress - Simple setSubscriptionDuration() and onProgress() for a recorder
- Multi Playback - This is a simple example doing several playbacks at the same time.
- Set Volume - Control of the sound volume
- Set Speed - Set the speed of a playback
- Seek Player - Seek into a playback
- Sound Effects - Play some sound effects, using a stream
- Set Log Level - Set Log Level
- Demo - A demonstration of the Flutter Sound features.