react-native-audio-streaming
react-native-audio-streaming copied to clipboard
Replace aacdecoder lib with Exoplayer on android
As discussed here https://github.com/tlenclos/react-native-audio-streaming/issues/5#issuecomment-237539525
Exoplayer is a better, recent, updated lib to handle media. Example implementation https://github.com/xeodou/react-native-player
I tried ExoPlayer and it's working nice and allow much more control on the stream. See my branch https://github.com/tlenclos/react-native-audio-streaming/tree/android-exoplayer.
Unfortunately it does not support shoutcast metadata, somebody tried to implement it here https://github.com/google/ExoPlayer/issues/466#issuecomment-103476038 but it's outdated and we need to apply this patch on the current version of ExoPlayer (and maybe create a PR).
Are you still looking at replacing aacdecoder with ExoPlayer? is the only holdup getting shoutcast metadata support for ExoPlayer?
Yes I still think this is the way to go, and the only blocker is shoutcast metadata support.