-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Hotfix/audio] 오디오 중단 & 재시작 할때의 음성 표시 바 수정 #148
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
혹시 AVNumberOfChannelsKey랑 AVEncoderAudioQualityKey는 몬가요..?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AVNumberOfChannelsKey: 음성 채널 수(Int)
AVEncoderAudioQualityKey: 오디오 품질(Enum)
입니다. 아래의 링크 참고해서 AVSampleRateKey 값과 AVEncoderAudioQualityKey 값을 맞췄습니다.
https://hoseiocean.medium.com/an-ios-developer-dive-in-avfaudio-choosing-the-sampling-rate-ea72217f4b45
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
기존에 음성 채널 수가 2였는데 지금 1로 바뀐 이유는 뭔가요 ?!
그리고 품질이라면 high에서 Medium으로 낮추신 이유도 궁금합니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아래의 사진을 참조하면
Rate 별 타입을 확인할 수 있는데, 현재 Rate 값인 44100에 medium이 어울린다고 판단해 수정했습니다. 그리고, 음성 채널 수는 단순한 녹음 기능이기에 1개만 있으면 충분하다 생각했습니다. 기존의 2개는 world wide web의 떠도는 코드를 가져와서 그렇습니다 ㅎ ㅠ.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오 감사합니다 !!