rxlabz / audioplayer

A flutter plugin to play audio files iOS / Android / MacOS / Web ( Swift/Java )
https://pub.dartlang.org/packages/audioplayer
494 stars 189 forks source link

Audio from local file cannot be played on iOS #144

Closed vickyrare closed 3 years ago

vickyrare commented 3 years ago

Audio from local file cannot be played on iOS. I am using audioplayer: 0.8.1.

vickyrare commented 3 years ago

Managed to fix it by adding isLocal: true to the play method.

await audioPlayer.play(localFilePath, isLocal: true);