All Projects β†’ tlenclos β†’ React Native Audio Streaming

tlenclos / React Native Audio Streaming

Licence: mit
iOS & Android react native module to play an audio stream, with background support and media controls

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to React Native Audio Streaming

Pandoraplayer
πŸ…ΏοΈ PandoraPlayer is a lightweight music player for iOS, based on AudioKit and completely written in Swift.
Stars: ✭ 1,037 (+37.72%)
Mutual labels:  audio, player, streaming
Awesome Video
A curated list of awesome streaming video tools, frameworks, libraries, and learning resources.
Stars: ✭ 397 (-47.28%)
Mutual labels:  audio, player, streaming
Persistentstreamplayer
Stream audio over http, and persist the data to a local file while buffering
Stars: ✭ 120 (-84.06%)
Mutual labels:  audio, player, streaming
Aplay
A Better(Maybe) iOS Audio Stream、Cache、Play Framework
Stars: ✭ 44 (-94.16%)
Mutual labels:  audio, player, streaming
Hysteriaplayer
Objective-C audio player, sitting on top of AVPlayer
Stars: ✭ 568 (-24.57%)
Mutual labels:  audio, player, streaming
Mpc Hc
MPC-HC's main repository. For support use our Trac: https://trac.mpc-hc.org/
Stars: ✭ 3,567 (+373.71%)
Mutual labels:  audio, player
React Music Player
🎡 Maybe the best beautiful HTML5 responsive player component for react :)
Stars: ✭ 321 (-57.37%)
Mutual labels:  audio, player
Radiodroid
radio browser app that uses www.radio-browser.info on android
Stars: ✭ 362 (-51.93%)
Mutual labels:  audio, streaming
Flutter Assetsaudioplayer
Play simultaneously music/audio from assets/network/file directly from Flutter, compatible with android / ios / web / macos, displays notifications
Stars: ✭ 458 (-39.18%)
Mutual labels:  audio, player
Kmedia
An application level media framework for Android. (RTFSC)
Stars: ✭ 274 (-63.61%)
Mutual labels:  audio, player
Skplayer
🎡 A simple & beautiful HTML5 music player
Stars: ✭ 437 (-41.97%)
Mutual labels:  audio, player
Tauonmusicbox
The Linux desktop music player from the future! πŸŒ†
Stars: ✭ 494 (-34.4%)
Mutual labels:  audio, player
Ffmpeg
Mirror of https://git.ffmpeg.org/ffmpeg.git
Stars: ✭ 27,382 (+3536.39%)
Mutual labels:  audio, streaming
Fwplayer
A video player SDK for iOS, it is based on AVPlayer. https://se.linkedin.com/in/foks-huiwang, https://fokswang.wixsite.com/home
Stars: ✭ 321 (-57.37%)
Mutual labels:  audio, player
Openwhyd
πŸ’Ž Like Pinterest, for Music
Stars: ✭ 287 (-61.89%)
Mutual labels:  player, streaming
Romplayer
AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player
Stars: ✭ 445 (-40.9%)
Mutual labels:  audio, player
React Player
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
Stars: ✭ 5,931 (+687.65%)
Mutual labels:  audio, player
Monstercat Visualizer
A real time audio visualizer for Rainmeter similar to the ones used in the Monstercat videos.
Stars: ✭ 571 (-24.17%)
Mutual labels:  audio, player
Rx Player
DASH/Smooth HTML5 Video Player
Stars: ✭ 600 (-20.32%)
Mutual labels:  player, streaming
Animeopenings
Displays random anime openings
Stars: ✭ 267 (-64.54%)
Mutual labels:  player, streaming

react-native-audio-streaming

THIS PROJECT IS NOT MAINTAINED

react-native-audio-streaming is not maintained anymore. The main purpose was to play shoutcast streams with meta data and display a notification while playing.

Please see other projects like

Features

  • Background audio streaming of remote stream
  • Control via sticky notification on android and media center on iOS
  • Shoutcast/Icy meta data support
  • Simple UI player component (if needed, an api to control the sound is available)

If you are only looking to play local audio file with app in foreground, please see other audio libs.

Demo iOS Demo android

First installation step (applied for both iOS & Android)

$ npm install react-native-audio-streaming --save

Next installation steps for iOS (choose one of three options below)

1. Cocoapods installation

  1. add pod 'RNAudioStreaming', :path => '../node_modules/react-native-audio-streaming' to Podfile
  2. run pod install

2. Mostly automatic installation

$ 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

3. Manual installation

  1. In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name]
  2. Go to node_modules ➜ react-native-audio-streaming => ios
    • run pod install to download StreamingKit dependency
    • add ReactNativeAudioStreaming.xcodeproj to the Libraries folder in your XCode project
    • add Pods/Pods.xcodeproj to the Libraries folder in your XCode project
  3. 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
  4. Run your project (Cmd+R)

Final steps for iOS (required after doing any of three options above)

  1. Make sure $(SRCROOT)/../node_modules/react-native-audio-streaming/ios is added to your project's Header Search Paths within the Build Settings section.

  2. Update Info.plist file of your Xcode project and add audio background mode

    <key>UIBackgroundModes</key>
    <array>
      <string>audio</string>
    </array>

Next installation steps for Android

  1. Open up android/app/src/main/java/[...]/MainApplication.java
  • Add import com.audioStreaming.ReactNativeAudioStreamingPackage; to the imports at the top of the file
  • Add new ReactNativeAudioStreamingPackage() to the list returned by the getPackages() method If you're using Android 23 or above
  • Add new ReactNativeAudioStreamingPackage(MainActivity.class) to he list returned by the getPackages()method instead.
  1. Append the following lines to 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')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-audio-streaming')
    
  3. If using Proguard then insert the following rules:
    -keep class com.spoledge.aacdecoder.** {
     *;
    }
    

Usage

Playing sound (similar code used by the player UI)

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.

Player UI

import { Player } from 'react-native-audio-streaming';

class PlayerUI extends Component {
  render() {
    return (
        <Player url={"http://lacavewebradio.chickenkiller.com:8000/stream.mp3"} />
    );
  }
}

TODO

  • [ ] Allow to play local files
  • [ ] Allow to specify custom style for the android notification (maybe a custom view ?)
  • [ ] Allow to specify custom styles for the player
  • [ ] Handle artwork of artist
  • [ ] Add tests

Credits

See also the list of contributors who participated in this project.

Contribute

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

Changelog

License

This project is licensed under the MIT License - see the LICENSE file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].