일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- dart
- namespace
- spring cloud config
- aws cli
- RTMP
- ffmpeg
- android studio
- Kubernetes
- docker
- 행정구역분류
- golang
- VSCode
- nginx-media-server
- Sysinternals
- HLS
- configmap
- service
- macos
- Windows10
- Android
- Java
- kubectl
- wireshark
- aws
- Flutter
- ebpf
- deployment
- Shell script
- Pod
- Today
- Total
목록macos (4)
woonizzooni
대충 3가지 옵션으로 추려봤다. - docker-desktop (이것을 사용하기로) : https://docs.docker.com/docker-for-mac/kubernetes/#use-the-kubectl-command - minikube (vm방식) : https://github.com/kubernetes/minikube - kind (컨테이너방식) : https://github.com/kubernetes-sigs/kind 이미 docker desktop ce가 설치되어 있는 상태고, EKS를 주로 이용할 것이니 그냥 docker-desktop의 쿠버네티스를 이용하기로 했다. 메뉴막대(화면 상단) 도커 아이콘 클릭 > Preferences 선택 > 화면 좌측 Kubernetes 선택 - Enable ..
[참고글 : 빌드 / 설치 / 실행파일 다운로드] Windows10 FFmpeg컴파일 macOS ffmpeg설치 FFmpeg 바이너리 다운로드 (Windows (32bit/64bit), macOS 64bit) - 화면 캡처 방법 참고 : https://trac.ffmpeg.org/wiki/Capture/Desktop - 구동환경 : 맥북 + 외부모니터 연결 $ ffmpeg -f avfoundation -list_devices true -i "" o 비디오장치 [0] : 내장카메라 [1] : 맥북모니터 [2] : 외부모니터 o 오디오장치 [0] : 맥북 마이크 [1] : Movavi 앱 가상 장치 같은데... (신경쓰지말자) o 송출 명령 구성 1. 장치/스트림 구성 -f avfoundation -vide..
MacOS환경에서 디버깅 시도시 다음과 같은 에러 메시지 만나면, lldb 구동에 필요한 파일들이 - 설치되어 있지 않거나 - macOS업데이트 과정에서 뭔가(?) 제거되거나 업데이트가 필요한 상황이 되거나 해서임. could not launch process: debugserver or lldb-server not found: install XCode's command line tools or lldb-server Process exiting with code: 1 xcode command line tools을 설치하면 됨. $ xcode-select --install xcode-select: note: install requested for command line developer tools
[출처] https://trac.ffmpeg.org/wiki/CompilationGuide/macOS 1. ffmpeg through Homebrew 2. Compiling FFmpeg yourself 이상 2가지 방식을 안내해주고 있는데, 맥에서 ffmpeg, ffprobe등의 바이너리 실행파일을 직접 사용할 것이므로 homebrew로 설치하는 방법만 다룬다. (homebrew설치하는방법은 제외) + default옵션으로는 aac인코더가 누락되어 있어서 포함시키는 옵션을 사용할것임. $ brew tap homebrew-ffmpeg/ffmpeg $ brew options homebrew-ffmpeg/ffmpeg/ffmpeg --with-chromaprint Enable the Chromaprint aud..