Main Page

Category카테고리 :

NoticeBorad게시판 / linux리눅스 / php / nodejs /website웹사이트

/ ReactNative / Kotlin / Swift / Cubase / QT / ServerApps

react-native-freelifemakers-ui

  • [Mediaserver]mini_Mediaserver_1-코드설명/code description-Protocol Control Messages -(1-2)

    👉🏻 아래는 miniMediaserver_1의 코드 설명입니다.(rtmp_session.cpp)Below is the code description for miniMediaserver_1 (rtmp_session.cpp). 👉🏻 void RtmpSession::send_protocol_messages() {} 이 함수에서 Protocol Control Messages 를 보냅니다.void RtmpSession::send_protocol_messages() {} This function sends Protocol Control Messages. 👉🏻 OBS가 서버로 보낼 데이터 설정 값을 OBS에게 통보합니다.Notifies OBS of the data setting values ​​to send to the server. ✔️ void RtmpSession::send_protocol_messages() {} —…


  • [Mediaserver]mini_Mediaserver_1-코드설명/code description-handshake-(1-1)

    👉🏻 아래는 RTMP 핸드 셰이크에 대한 설명입니다.Below is an explanation of the RTMP handshake. 👉🏻RTMP 전체 흐름 / RTMP full flow , RTMP핸드 셰이크 / RTMP Handshake 👉🏻1.TCP 연결 / TCP connection 👉🏻2.RTMP 핸드 셰이크 / RTMP Handshake ✔️ RTMP는 Adobe가 만든 프로토콜로 C0C1 → S0S1S2 → C2 순서를 무조건 지켜야합니다. ✔️ 서버와 클라이언트 간의…


  • [Basic]make_unique+파일에 로그기록/log to file

    👉🏻 아래 코드는 mini_mediasever_1의 일부로직을 사용합니다.The code below uses some of the logic from mini_mediasever_1. 👉🏻make_unique를 사용해서 파일에 로그를 기록하는 코드입니다.This is code that logs to a file using make_unique. ✔️make_unique 는new + unique_ptr 생성자를 합친 것.make_unique is a combination of the new + unique_ptr constructors. ✔️ unique_ptr : 한 곳만 할당가능한 포인터,소유권 이동만가능A pointer…