I am working on a project in which i have to make Api for radio streaming by which user can listen radio stream from his mobile application not web. Please let me know if there is any framework in Node.js which can stream my audio file to mobile clients in real time.
I have a look on Binary.js but I am not sure it can deal with my mobile clients. Anyone please guide me on this.
Try to use STK-on-iOS
Simply create an object and pass your Radio streaming URL. I hope it'll help.
in .h file create object
STKAudioPlayer* audioPlayer;
In .m file
if (isRadioOn == YES)
{
[self.audioPlayer pause];
isRadioOn = NO;
}
else
{
self.audioPlayer = [[STKAudioPlayer alloc] init];
[self.audioPlayer play:@"http://Your URL here/;stream.mp3%20&13202692901&duration=99999&id=scplayer&autostart=true"];
isRadioOn = YES;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With