doublesymmetry / react-native-track-player

A fully fledged audio module created for music apps. Provides audio playback, external media controls, background mode and more!
https://rntp.dev/
Apache License 2.0
3.23k stars 999 forks source link

Is M3U file supported? Alternative? #353

Closed newfylox closed 5 years ago

newfylox commented 5 years ago

I was wondering if react-native-track-player can play M3U files and if not, is there a way to do it? Do I need to import a M3U parser and do it by myself?

Thanks!

Guichaguri commented 5 years ago

No, you have to parse it yourself. Luckily for you, M3U files are pretty simple to parse, here is one parser that should work on react-native.

newfylox commented 5 years ago

Thank you!