tangled
alpha
login
or
join now
stream.place
/
streamplace
Live video on the AT Protocol
74
fork
atom
overview
issues
1
pulls
pipelines
add android stuff
Natalie Bridgers
4 months ago
4e762945
8a99d74f
+4
1 changed file
expand all
collapse all
unified
split
js
config-react-native-webrtc
src
config-react-native-webrtc.ts
+4
js/config-react-native-webrtc/src/config-react-native-webrtc.ts
···
43
43
.build()
44
44
options.audioDeviceModule = JavaAudioDeviceModule.builder(this)
45
45
.setAudioAttributes(audioAttributes)
46
46
+
.setUseStereoInput(true)
47
47
+
.setUseStereoOutput(true)
46
48
.createAudioDeviceModule()
47
49
`,
48
50
},
···
141
143
let options = WebRTCModuleOptions.sharedInstance()
142
144
options.loggingSeverity = .warning
143
145
options.audioDevice = device
146
146
+
// Enable stereo audio
147
147
+
options.enableStereoOutput = true
144
148
// End WebRTC Configuration
145
149
146
150
let delegate = ReactNativeDelegate()