0.0.6 • Published 4 years ago

react-native-audio-session v0.0.6

Weekly downloads
547
License
MIT
Repository
github
Last release
4 years ago

react-native-audio-session

npm version npm downloads

A React Native module for handling category, category options and mode on the AVAudioSession sharedInstance on iOS.

Getting started

$ yarn add react-native-audio-session

and then

$ react-native link react-native-audio-session

Usage

import AudioSession from 'react-native-audio-session'

// Set AVAudioSession active
AudioSession.setActive(true)
.then(() => { console.log('Success!') })
.catch(error => { console.log('Error!') })

// Set AVAudioSession category
AudioSession.setCategory('Playback')
.then(() => { console.log('Success!') })
.catch(error => { console.log('Error!') })

// Set AVAudioSession category and options
AudioSession.setCategory('Playback', 'MixWithOthers')
.then(() => { console.log('Success!') })
.catch(error => { console.log('Error!') })

// Set AVAudioSession mode
AudioSession.setMode('VoiceChat')
.then(() => { console.log('Success!') })
.catch(error => { console.log('Error!') })

// Set AVAudioSession category, mode and options
AudioSession.setCategoryAndMode('Playback', 'VoiceChat', 'MixWithOthers')
.then(() => { console.log('Success!') })
.catch(error => { console.log('Error!') })

// Get current AVAudioSession category
AudioSession.currentCategory().then(category => {
  console.log(category)
})

// Get current AVAudioSession options
AudioSession.currentCategoryOptions().then(options => {
  console.log(options)
})

// Get current AVAudioSession mode
AudioSession.currentMode().then(mode => {
  console.log(mode)
})

API

Modules

AudioSession

Method NameParamsReturnsNotes
setActiveBoolPromise<void>Set the current AVAudioSession as active (Reference).
setCategoryAudioCategory, AudioCategoryOptions (nullable)Promise<void>Set the current AVAudioSession category (Reference).
setModeAudioModePromise<void>Set the current AVAudioSession mode (Reference).
setCategoryAndModeAudioCategory, AudioMode, AudioCategoryOptions (nullable)Promise<void>Set the current AVAudioSession category and mode (Reference).
currentCategory-Promise<AudioCategory>Get the current AVAudioSession category (Reference).
currentOptions-Promise<AudioCategoryOptions>Get the current AVAudioSession options (Reference).
currentMode-Promise<AudioMode>Get the current AVAudioSession mode (Reference).

Params

AudioCategory

The AudioCategory param to all methods. Corresponds to AVAudioSessionCategory in iOS. Read more: Audio Session Category (developer.apple.com)

ParamAVAudioSessionCategory
AmbientAVAudioSessionCategoryAmbient
SoloAmbientAVAudioSessionCategorySoloAmbient
PlaybackAVAudioSessionCategoryPlayback
RecordAVAudioSessionCategoryRecord
PlayAndRecordAVAudioSessionCategoryPlayAndRecord
MultiRouteAVAudioSessionCategoryMultiRoute

AudioCategoryOptions

The AudioCategoryOptions param to all methods. Corresponds to AVAudioSessionCategoryOptions in iOS. Read more: AVAudioSessionCategoryOptions (developer.apple.com)

ParamAVAudioSessionCategoryOptions
MixWithOthersAVAudioSessionCategoryOptionMixWithOthers
DuckOthersAVAudioSessionCategoryOptionDuckOthers
InterruptSpokenAudioAndMixWithOthersAVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers
AllowBluetoothAVAudioSessionCategoryOptionAllowBluetooth
AllowBluetoothA2DPAVAudioSessionCategoryOptionAllowBluetoothA2DP
AllowAirPlayAVAudioSessionCategoryOptionAllowAirPlay
DefaultToSpeakerAVAudioSessionCategoryOptionDefaultToSpeaker

AudioMode

The AudioMode param to all methods. Corresponds to AVAudioSessionMode in iOS. Read more: Audio Session Mode (developer.apple.com)

ParamAVAudioSessionMode
DefaultAVAudioSessionModeDefault
VoiceChatAVAudioSessionModeVoiceChat
VideoChatAVAudioSessionModeVideoChat
GameChatAVAudioSessionModeGameChat
VideoRecordingAVAudioSessionModeVideoRecording
MeasurementAVAudioSessionModeMeasurement
MoviePlaybackAVAudioSessionModeMoviePlayback
SpokenAudioAVAudioSessionModeSpokenAudio

Contributing

If you find a bug or would like to request a new feature, just open an issue. You are also welcome to submit pull requests and contribute to the project.

License

The MIT License (MIT)

Copyright (c) 2018 Johan Kasperi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.