windows_audio 0.0.1 copy "windows_audio: ^0.0.1" to clipboard
windows_audio: ^0.0.1 copied to clipboard

A simple windows audio library

windows_audio #

A simple windows audio plugin for flutter

Implementation #

Add the flutter plugin to your pubspec.yaml file

dependencies:
  windows_audio: ^0.0.1

Then create an instance of the player

final Player = WindowsAudio();

Finally load the audio and play it

Player.load("path/to/audio");
Player.play();

This supports wav, mp3 and ogg files.