일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Protocol
- 리팩토링
- UICollectionView
- 리펙토링
- MVVM
- 애니메이션
- HIG
- Xcode
- Clean Code
- 클린 코드
- uiscrollview
- rxswift
- ribs
- Human interface guide
- collectionview
- 스위프트
- ios
- SWIFT
- UITextView
- map
- swift documentation
- Refactoring
- uitableview
- 리펙터링
- RxCocoa
- swiftUI
- Observable
- combine
- clean architecture
- tableView
- Today
- Total
목록오디오 (6)
김종권의 iOS 앱 개발 알아가기
1. 오디오 처리 - AVPlayer, AVAudioPlayer 개념 (실시간 스트리밍, 로컬 파일 재생) 2. 오디오 처리 - AVAudioRecoder 개념 (녹음) 비교 (복습) 실시간 스트리밍 -> AVPlayer 사용 로컬 파일 재생 -> AVAudioPlayer 사용 음성 특수 효과 or 변조 -> AVAudioEngine 사용 cf) 녹음 -> AVAudioRecoder 사용 비동기 처리의 편의를 위해서 사용한 프레임워크 pod 'RxSwift' pod 'RxCocoa' pod 'RxAVFoundation' AVAudioRecoder 녹음기능을 사용하기 위해서 시스템 권한이 필요 NSMicrophoneUsageDescription 마이크 이용 권한 요청 메시지 MyAudioRecoderVie..
1. 오디오 처리 - AVPlayer, AVAudioPlayer 개념 (실시간 스트리밍, 로컬 파일 재생) 2. 오디오 처리 - AVAudioRecoder 개념 (녹음) 비교 실시간 스트리밍 -> AVPlayer 사용 로컬 파일 재생 -> AVAudioPlayer 사용 음성 특수 효과 or 변조 -> AVAudioEngine 사용 cf) 녹음 -> AVAudioRecoder 사용 비동기 처리의 편의를 위해서 사용한 프레임워크 pod 'RxSwift' pod 'RxCocoa' pod 'RxAVFoundation' 커스텀 Rx extension 버튼 하나로 토글 처리하는데 편리한 isHighlighted, isSelected 추가 // Rx+Extension.swift extension Reactive wh..
1. AVFoundation 개념 - 구조, AVAsset, AVKit 2. AVFoundation 개념 - AVPlayer, AVPlayerItem 3. AVFoundation 개념 - AVPlayer 오디오 재생, 일시정지, 재생구간 이동 구현 (play, pause, seek) 4. AVFoundation 개념 - AVPlayer, AVPlayerLayer로 동영상 재생 방법 5. AVFoundation 개념 - AVAudioSession 개념 (오디오 활성화, 입출력 변경, 잠금화면 재생, 재생 중 전화가 온 경우 처리) * 번외) 오디오 처리 - AVPlayer, AVAudioPlayer 개념 (실시간 스트리밍, 로컬 파일 재생) AVAudioSession AVAudioSession라는 싱글톤이..
1. AVFoundation 개념 - 구조, AVAsset, AVKit 2. AVFoundation 개념 - AVPlayer, AVPlayerItem 3. AVFoundation 개념 - AVPlayer 오디오 재생, 일시정지, 재생구간 이동 구현 (play, pause, seek) 4. AVFoundation 개념 - AVPlayer, AVPlayerLayer로 동영상 재생 방법 5. AVFoundation 개념 - AVAudioSession 개념 (오디오 활성화, 입출력 변경, 잠금화면 재생, 재생 중 전화가 온 경우 처리) * 오디오 재생 관련 방법은 AVPlayer 방법과 AVAudioPlayer 사용이 존재 - 단순히 오디오를 재생시키는 경우 AVPlayer를 사용 (play, pause, se..
1. AVFoundation 개념 - 구조, AVAsset, AVKit 2. AVFoundation 개념 - AVPlayer, AVPlayerItem 3. AVFoundation 개념 - AVPlayer 오디오 재생, 일시정지, 재생구간 이동 구현 (play, pause, seek) 4. AVFoundation 개념 - AVPlayer, AVPlayerLayer로 동영상 재생 방법 5. AVFoundation 개념 - AVAudioSession 개념 (오디오 활성화, 입출력 변경, 잠금화면 재생, 재생 중 전화가 온 경우 처리) AVPlayer 개념 AVPlayer: player 작업에 관한 인터페이스를 제공하는 객체 실시간 스트리밍 파일을 재생할때 사용 (mp3 url만 가지고, 다운로드 받지 않고 재..
1. AVFoundation 개념 - 구조, AVAsset, AVKit 2. AVFoundation 개념 - AVPlayer, AVPlayerItem 3. AVFoundation 개념 - AVPlayer 오디오 재생, 일시정지, 재생구간 이동 구현 (play, pause, seek) 4. AVFoundation 개념 - AVPlayer, AVPlayerLayer로 동영상 재생 방법 5. AVFoundation 개념 - AVAudioSession 개념 (오디오 활성화, 입출력 변경, 잠금화면 재생, 재생 중 전화가 온 경우 처리) AVFoundation 시간에 따른 시청각 미디어 재생 / 생성 할 수 있게 해주는 프레임워크 Objective-c 인터페이스를 제공해주어 아래와같은 미디어에 대한 상세한 컨트롤..