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
.build()
44
options.audioDeviceModule = JavaAudioDeviceModule.builder(this)
45
.setAudioAttributes(audioAttributes)
0
0
46
.createAudioDeviceModule()
47
`,
48
},
···
141
let options = WebRTCModuleOptions.sharedInstance()
142
options.loggingSeverity = .warning
143
options.audioDevice = device
0
0
144
// End WebRTC Configuration
145
146
let delegate = ReactNativeDelegate()
···
43
.build()
44
options.audioDeviceModule = JavaAudioDeviceModule.builder(this)
45
.setAudioAttributes(audioAttributes)
46
+
.setUseStereoInput(true)
47
+
.setUseStereoOutput(true)
48
.createAudioDeviceModule()
49
`,
50
},
···
143
let options = WebRTCModuleOptions.sharedInstance()
144
options.loggingSeverity = .warning
145
options.audioDevice = device
146
+
// Enable stereo audio
147
+
options.enableStereoOutput = true
148
// End WebRTC Configuration
149
150
let delegate = ReactNativeDelegate()