
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
react-native-audio-streaming
Advanced tools
If you are only looking to play local audio file with app in foreground, please see other audio libs.

$ npm install react-native-audio-streaming --save
pod 'RNAudioStreaming', :path => '../node_modules/react-native-audio-streaming' to Podfilepod install$ react-native link react-native-audio-streaming
Go to node_modules âžś react-native-audio-streaming => ios => Pods and drag/drop Pods.xcodeproj to the Libraries folder in your XCode project.
In XCode, in the project navigator, select your project. Add libReactNativeAudioStreaming.a and libStreamingKit.a to your project's Build Phases âžś Link Binary With Libraries
Libraries âžś Add Files to [your project's name]node_modules âžś react-native-audio-streaming => ios
pod install to download StreamingKit dependencyReactNativeAudioStreaming.xcodeproj to the Libraries folder in your XCode projectPods/Pods.xcodeproj to the Libraries folder in your XCode projectlibReactNativeAudioStreaming.a and libStreamingKit.a to your project's Build Phases âžś Link Binary With LibrariesCmd+R)Make sure $(SRCROOT)/../node_modules/react-native-audio-streaming/ios is added to your project's Header Search Paths within the Build Settings section.
Update Info.plist file of your Xcode project and add audio background mode
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
</array>
android/app/src/main/java/[...]/MainApplication.javaimport com.audioStreaming.ReactNativeAudioStreamingPackage; to the imports at the top of the filenew ReactNativeAudioStreamingPackage() to the list returned by the getPackages() method
If you're using Android 23 or abovenew ReactNativeAudioStreamingPackage(MainActivity.class) to he list returned by the getPackages()method instead.android/settings.gradle:
include ':react-native-audio-streaming'
project(':react-native-audio-streaming').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-audio-streaming/android')
android/app/build.gradle:
compile project(':react-native-audio-streaming')
import { ReactNativeAudioStreaming } from 'react-native-audio-streaming';
const url = "http://lacavewebradio.chickenkiller.com:8000/stream.mp3";
ReactNativeAudioStreaming.pause();
ReactNativeAudioStreaming.resume();
ReactNativeAudioStreaming.play(url, {showIniOSMediaCenter: true, showInAndroidNotifications: true});
ReactNativeAudioStreaming.stop();
For more information see the Example app.
import { Player } from 'react-native-audio-streaming';
class PlayerUI extends Component {
render() {
return (
<Player url={"http://lacavewebradio.chickenkiller.com:8000/stream.mp3"} />
);
}
}
See also the list of contributors who participated in this project.
Since symlink support is still lacking on React Native, I use the wml cli tool created by the nice folks at wix.
wml add ~/react-native-audio-streaming ~/react-native-audio-streaming/Example/node_modules/react-native-audio-streaming
This project is licensed under the MIT License - see the LICENSE file for details
FAQs
React native audio streaming library for android and iOS
The npm package react-native-audio-streaming receives a total of 697 weekly downloads. As such, react-native-audio-streaming popularity was classified as not popular.
We found that react-native-audio-streaming demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.