1.0.0 • Published 7 years ago

react-native-streaming-player v1.0.0

Weekly downloads
4
License
-
Repository
github
Last release
7 years ago

react-native-streaming-player

IOS class to add react-native implementation for web audio urls(look at AVPlayer documentation for audio compatibility). Tested using mp3 urls.

Add it to your project

Basic usage

//To initialize the audio clip with meta data

var songInfo = {
	name: "Name of the song",
  artist_name: "Song's band name",
  artwork: "Song's cover image",
};

audio.initPlayer("http://your_audio_url_here", songInfo);

//To retrieve the length of the clip in seconds as a float
audio.getDuration((duration) => {
	//do what you need with duration variable
	//***Example
	var minutes = Math.floor(duration/60);
	var seconds = Math.ceil((duration/60 - minutes) * 60);
	this.setState({minutes: minutes, seconds: seconds, totalSeconds: duration});
});

//To play audio clip
audio.play();

//To pause audio clip
audio.pause();

//To set volume of the player
audio.setVolume(0.3);

//To seek to a specific time in seconds
audio.seekToTime(time_in_seconds);

New Additions

// Import 
var { NativeEventEmitter } = require('react-native');
const audioEvent = new NativeEventEmitter(NativeModules.RNStreamingAudioPlayer);

//Listen for audio end
var subscription = NativeAppEventEmitter.addListener(
	'AudioEnded',
	(trigger) => {console.log(trigger.event)};
);

//Listen for previous song action from Media center
var subscription = NativeAppEventEmitter.addListener(
	'goToPrevious',
	(trigger) => {console.log(trigger.event)};
);

//Listen for next song action from Media center
var subscription = NativeAppEventEmitter.addListener(
	'goToNext',
	(trigger) => {console.log(trigger.event)};
);