Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- RTCP
- JavaScript
- 미니큐브
- 독스트링
- 7.0.0
- 도커
- 표준에러
- 자바스크립트
- revert
- kubernetes
- stash
- 명령어
- kurento
- 위코드
- 쿠버네티스
- 6.6.0
- underscore
- onicecandidate
- docstring
- Docker
- 리눅스
- Dockerfile
- 파이썬
- 기초
- Docker Compose
- fastapi
- 표준출력
- minikube
- corsmiddleware
- Python
Archives
- Today
- Total
Devlog
SyntaxError: WebRtcEndpoint doesn't accept events of type 'OnIceCandidate' 본문
기타
SyntaxError: WebRtcEndpoint doesn't accept events of type 'OnIceCandidate'
ehdrb92 2023. 8. 8. 11:52Kurento 미디어 서버를 이용하여 WebRTC 그룹 화상 통화하는 기능을 만들기 위해 깃허브에 오픈소스로 공개되어 있는 코드를 참고하여 사용하는 중이었다.
https://github.com/chapin666/kurento-group-call-node
그런데 해당 코드에서는 kurento-client 6.6.0 버전을 사용하여 구현된 코드였고, 이를 최신 버전인 7.0.0으로 사용하기 위해 변경 후 서버를 실행시켜 테스트를 하는 중 에러를 마주치게 되었다.
에러 메시지는 WebRtcEndpoint에서 OnIceCandidate를 지원하지 않는다는 것이었다.
그래서 Kurento release 문서를 찾아본 결과 6.15.0 버전에서 다음과 같은 내용을 확인할 수 있었다.
https://doc-kurento.readthedocs.io/en/latest/project/relnotes/v6_15_0.html
OnIceCandidate 이벤트가 IceCandidateFound 이벤트로 대체되었다는 점을 알 수 있다.
OnIceCandidate 이벤트를 받는 부분을 IceCandidateFound 코드로 대체하면 문제 해결완료!
'기타' 카테고리의 다른 글
ICE_GATHER_CANDIDATES_ERROR (1) | 2023.08.11 |
---|---|
잊어버리기 쉬운 깃 명령어 정리 (0) | 2023.02.27 |