Main Page

Category카테고리 :

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

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

react-native-freelifemakers-ui

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

    👉🏻 msg_len만큼 다 받아서 완성된 RTMP 메시지 하나를 msg_type별로 분기 처리하는 함수 입니다.This is a function that receives msg_len and processes a completed RTMP message by branching according to msg_type. 👉🏻 전체 데이터 흐름 요약 (방송/스트리밍 관점)Summary of Overall Data Flow (Broadcast/Streaming Perspective) 단계/Stage 주체/Subject 일어나는 일 (개념) / Things that happen (concept) 기술적 표현…


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

    👉🏻 여기는 void RtmpSession::read_message_header(uint8_t fmt, uint32_t cs_id) { } 이 함수에 대한 설명입니다.Here is the description for the function void RtmpSession::read_message_header(uint8_t fmt, uint32_t cs_id) { }. 👉🏻 OBS가 보낸 chunk에서 fmt 0∼3에 따라 가변 헤더를 읽고, 현재 메시지의 timestamp, length, type, stream_id를 갱신합니다.Read variable headers according to fmt 0~3 from the chunk sent by OBS,…


  • [Mediaserver]mini_Mediaserver_1-코드설명/code description-fmt,cs_id(1-3)

    👉🏻 void RtmpSession::read_chunk_header() {} 함수에 대한 설명입니다.This is a description of the void RtmpSession::read_chunk_header() {} function. ✔️ 여기서는 소켓에서 1바이트(8비트)를 읽어와서 fmt와 cs_id를 추출합니다.Here, we read 1 byte (8 bits) from the socket to extract fmt and cs_id. fmt 값/value MessageHeader 크기 의미 / meaning 0 11Byte 풀 헤더/Full Header 1 7Byte stream_id 생략 /…