You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 📌 FFmpeg 및 FFprobe 설치
- [FFmpeg 다운로드 페이지](https://ffmpeg.org/download.html)로 이동
- Windows 빌드 선택 (권장: [gyan.dev](https://www.gyan.dev/ffmpeg/builds/))
- "Release builds"에서 `ffmpeg-release-essentials.zip` 다운로드
- ZIP 파일을 `C:\ffmpeg`에 압축 해제
# 📌 PATH 환경 변수 추가
- `C:\ffmpeg\bin` 경로 복사
- 내 PC → 속성 → 고급 시스템 설정 → 환경 변수 클릭
- 시스템 변수에서 `Path` 편집 → 새 경로에 `C:\ffmpeg\bin` 추가
- 모든 창 닫기
# 📌 설치 확인
- Win + R → "cmd" 입력 후 실행
- `ffmpeg -version` 및 `ffprobe -version` 입력해 설치 확인
# 📌 GoLand IDE에서 프로그램 실행 시 설정하는 방법
- Program arguments: Go 프로그램을 실행할 때 전달할 명령줄 인수.
- 여기서는 `-c deploy/dev/config.toml`을 전달하여 `config.toml` 파일을 설정 파일로 사용합니다.
- 설정 방법
1. GoLand에서 Run/Debug Configurations를 엽니다.
2. Program arguments 필드에 `-c deploy/dev/config.toml`을 입력합니다.
3. 이 설정은 프로그램이 `config.toml` 파일을 읽어들이도록 하여, 지정된 환경 설정을 로드하게 합니다.
4. 설정을 저장하고, Run 버튼을 클릭하여 프로그램을 실행합니다.
테스트 코드 실행 시키기 (Git Bash)
# 📌 모든 테스트 코드 실행
go test ./internal/...
# 📌 커버리지 프로파일 생성 후, HTML 보고서 생성
go test -v -coverprofile=coverage.out ./internal/...
go tool cover -html=coverage.out