Skip to content

Commit a8e7549

Browse files
authored
fix: change audio source to DEFAULT (#211)
* fix: change audio source to DEFAULT CAMCORDER doesn't work with external microphones as per #16 (comment) * docs: update changelog
1 parent c5f3027 commit a8e7549

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Changed
99
- Reduced recording label size to align with material guidelines ([#96])
1010

11+
### Fixed
12+
- Fixed issue recording with external microphones ([#16])
13+
1114
## [1.3.4] - 2025-08-20
1215
### Changed
1316
- Updated translations

app/src/main/kotlin/org/fossify/voicerecorder/helpers/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ val SAMPLING_RATE_BITRATE_LIMITS = mapOf(
8686
EXTENSION_OGG to SAMPLING_RATE_BITRATE_LIMITS_OPUS
8787
)
8888

89-
const val RECORDING_AUDIO_SOURCE = MediaRecorder.AudioSource.CAMCORDER
89+
const val RECORDING_AUDIO_SOURCE = MediaRecorder.AudioSource.DEFAULT
9090

9191
const val RECORDING_RUNNING = 0
9292
const val RECORDING_STOPPED = 1

0 commit comments

Comments
 (0)