nstudio / nativescript-audio

:microphone: NativeScript plugin to record and play audio :musical_note:
Other
149 stars 104 forks source link

ogg audio format not playing on iOS #163

Closed Omar-Al-Ashi closed 4 years ago

Omar-Al-Ashi commented 4 years ago

On iOS, .ogg audio format is not loading, whereas on Android it works perfectly without any issues. Is there a way to load and play .ogg audio?

bradmartin commented 4 years ago

Have you checked to see if the native iOS player class being used in this plugin supports that format?

https://github.com/nstudio/nativescript-audio/blob/master/src/ios/player.ts#L92 AVAudioPlayer is what you need to confirm supports that format.

Omar-Al-Ashi commented 4 years ago

It turns out "AVAudioPlayer" doesn't support .ogg formats :/ Is there a workaround to play .ogg audio?

bradmartin commented 4 years ago

Not with this plugin. Can you search for something on native iOS that supports ogg? If you find it then you'll have a route to take.