use a diff audio source

This commit is contained in:
gowthaman 2022-01-31 21:26:53 +05:30
parent 4b7c0fb1c9
commit e71007f9e6
2 changed files with 2 additions and 1 deletions

1
.idea/gradle.xml generated
View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>

View File

@ -212,7 +212,7 @@ class MainActivity : AppCompatActivity(), CoroutineScope by MainScope() {
private fun startRecording() {
recorder = MediaRecorder().apply {
setAudioSource(MediaRecorder.AudioSource.MIC)
setAudioSource(MediaRecorder.AudioSource.VOICE_PERFORMANCE)
setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP)
setOutputFile(fileName)
setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB)