Closed
Description
I'm trying to send a RTMP stream from GStreamer using this pipeline:
$ gst-launch-1.0 videotestsrc ! x264enc tune=zerolatency ! flvmux name=mux ! rtmp2sink location=rtmp://localhost:1935/live/test audiotestsrc ! avenc_aac ! mux.
It got stuck as it seems xiu
is blocked somehow:
[2023-05-16T08:33:54Z INFO xiu::api] Http api server listening on http://:8000
[2023-05-16T08:33:54Z TRACE mio::poll] registering event source with poller: token=Token(1), interests=READABLE | WRITABLE
[2023-05-16T08:33:54Z TRACE mio::poll] registering event source with poller: token=Token(0), interests=READABLE | WRITABLE
[2023-05-16T08:33:54Z INFO rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935
[2023-05-16T08:33:58Z TRACE mio::poll] registering event source with poller: token=Token(2), interests=READABLE | WRITABLE
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] server session: 127.0.0.1:60294
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer
[2023-05-16T08:33:58Z INFO rtmp::handshake::handshake_server] [ S<-C ] [complex handshake] read C0C1
[2023-05-16T08:33:58Z WARN rtmp::handshake::handshake_server] complex handshake failed.. err:digest error: cannot generate digest
[2023-05-16T08:33:58Z INFO rtmp::handshake::handshake_server] [ S<-C ] [simple handshake] read C0C1
[2023-05-16T08:33:58Z INFO rtmp::handshake::handshake_server] [ S->C ] [simple handshake] write S0S1S2
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=3073
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer
[2023-05-16T08:33:58Z INFO rtmp::handshake::handshake_server] [ S<-C ] [simple handshake] read C2
[2023-05-16T08:33:58Z INFO rtmp::handshake::handshake_server] simple handshake successfully..
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [send_set_chunk_size]
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=16
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] extend_data length: 124: content:[3, 0, 0, 0, 0, 0, 70, 14, 0, 0, 0, 0, 2, 0, 7, 63, 6F, 6E, 6E, 65, 63, 74, 0, 3F, F0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 61, 70, 70, 2, 0, 4, 6C, 69, 76, 65, 0, 4, 74, 79, 70, 65, 2, 0, A, 6E, 6F, 6E, 70, 72, 69, 76, 61, 74, 65, 0, 8, 66, 6C, 61, 73, 68, 56, 65, 72, 2, 0, E, 4C, 4E, 58, 20, 31, 30, 2C, 30, 2C, 33, 32, 2C, 31, 38, 0, 5, 74, 63, 55, 72, 6C, 2, 0, 15, 72, 74, 6D, 70, 3A, 2F, 2F, 6C, 6F, 63, 61, 6C, 68, 6F, 73, 74, 2F, 6C, 69, 76, 65, 0, 0, 9]
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038495090782, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038495224605, and read state: ReadBasicHeader, and chunk index: 0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_basic_header, chunk stream id update, new: 3, old:0, byte: 3
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 3,format id: 0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header, data left in buffer: 123
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 0, msg_length: 112
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 0, msg_type_id: 20
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadMessageHeader, timestamp:0, timestamp delta:0, msg length: 112,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadExtendedTimestamp, timestamp:0, timestamp delta:0, msg length: 112,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload whole msg length: 112 and remaining bytes need to be read: 112
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload buffer len:112, need_read_length: 112
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload current msg payload len:112
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk end, current time: 1684226038495277405, and read state: ReadBasicHeader, and chunk index: 1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038495283997, and read state: ReadBasicHeader, and chunk index: 1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038495288696, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S<-C ] [connect]
[2023-05-16T08:33:58Z WARN rtmp::session::server_session] unknown connect properties: type:UTF8String("nonprivate")
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] connect properties: ConnectProperties { app: Some("live"), flash_ver: Some("LNX 10,0,32,18"), swf_url: None, tc_url: Some("rtmp://localhost/live"), fpad: None, capabilities: None, audio_codecs: None, video_codecs: None, video_function: None, object_encoding: None, page_url: None, pub_type: None }
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [set window_acknowledgement_size]
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=16
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [set set_peer_bandwidth]
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=17
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [set connect_response]
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=202
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038495445252, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038495450702, and read state: ReadBasicHeader, and chunk index: 2
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038495455692, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] extend_data length: 16: content:[2, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 10, 0]
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038535715041, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038535729979, and read state: ReadBasicHeader, and chunk index: 3
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_basic_header, chunk stream id update, new: 2, old:3, byte: 2
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 2,format id: 0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header, data left in buffer: 15
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 0, msg_length: 4
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 0, msg_type_id: 5
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadMessageHeader, timestamp:0, timestamp delta:0, msg length: 4,msg type id: 5, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadExtendedTimestamp, timestamp:0, timestamp delta:0, msg length: 4,msg type id: 5, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload whole msg length: 4 and remaining bytes need to be read: 4
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload buffer len:4, need_read_length: 4
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload current msg payload len:4
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk end, current time: 1684226038535832493, and read state: ReadBasicHeader, and chunk index: 4
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038535841811, and read state: ReadBasicHeader, and chunk index: 4
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038535850266, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038535861237, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038535868511, and read state: ReadBasicHeader, and chunk index: 5
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038535876456, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] extend_data length: 111: content:[43, 0, 0, 0, 0, 0, 21, 14, 2, 0, D, 72, 65, 6C, 65, 61, 73, 65, 53, 74, 72, 65, 61, 6D, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 4, 74, 65, 73, 74, 43, 0, 0, 0, 0, 0, 1D, 14, 2, 0, 9, 46, 43, 50, 75, 62, 6C, 69, 73, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 4, 74, 65, 73, 74, 43, 0, 0, 0, 0, 0, 19, 14, 2, 0, C, 63, 72, 65, 61, 74, 65, 53, 74, 72, 65, 61, 6D, 0, 40, 0, 0, 0, 0, 0, 0, 0, 5]
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038576673091, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038576684132, and read state: ReadBasicHeader, and chunk index: 6
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_basic_header, chunk stream id update, new: 3, old:2, byte: 67
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 3,format id: 0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 3,format id: 1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header, data left in buffer: 110
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 1, msg_length: 33
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 1, msg_type_id: 20
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadMessageHeader, timestamp:0, timestamp delta:0, msg length: 33,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadExtendedTimestamp, timestamp:0, timestamp delta:0, msg length: 33,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload whole msg length: 33 and remaining bytes need to be read: 33
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload buffer len:103, need_read_length: 33
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload current msg payload len:33
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk end, current time: 1684226038576768171, and read state: ReadBasicHeader, and chunk index: 7
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038576776938, and read state: ReadBasicHeader, and chunk index: 7
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 3,format id: 1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header, data left in buffer: 69
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 1, msg_length: 29
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 1, msg_type_id: 20
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadMessageHeader, timestamp:0, timestamp delta:0, msg length: 29,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadExtendedTimestamp, timestamp:0, timestamp delta:0, msg length: 29,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload whole msg length: 29 and remaining bytes need to be read: 29
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload buffer len:62, need_read_length: 29
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload current msg payload len:29
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk end, current time: 1684226038576842662, and read state: ReadBasicHeader, and chunk index: 8
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038576851679, and read state: ReadBasicHeader, and chunk index: 8
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 3,format id: 1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header, data left in buffer: 32
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 1, msg_length: 25
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 1, msg_type_id: 20
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadMessageHeader, timestamp:0, timestamp delta:0, msg length: 25,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadExtendedTimestamp, timestamp:0, timestamp delta:0, msg length: 25,msg type id: 20, msg stream id:0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload whole msg length: 25 and remaining bytes need to be read: 25
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload buffer len:25, need_read_length: 25
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload current msg payload len:25
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk end, current time: 1684226038576917483, and read state: ReadBasicHeader, and chunk index: 9
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038576924877, and read state: ReadBasicHeader, and chunk index: 9
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038576932892, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S<-C ] [create stream]
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=41
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [create_stream_response] app_name: live
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038577027672, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038577035526, and read state: ReadBasicHeader, and chunk index: 10
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038577043321, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] extend_data length: 46: content:[3, 0, 0, 0, 0, 0, 22, 14, 1, 0, 0, 0, 2, 0, 7, 70, 75, 62, 6C, 69, 73, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 4, 74, 65, 73, 74, 2, 0, 4, 6C, 69, 76, 65]
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038577242848, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038577251365, and read state: ReadBasicHeader, and chunk index: 11
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header, csid: 3,format id: 0
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header, data left in buffer: 45
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 0, msg_length: 34
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_header format 0, msg_type_id: 20
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadMessageHeader, timestamp:0, timestamp delta:0, msg length: 34,msg type id: 20, msg stream id:1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] print_current_basic_header state ReadExtendedTimestamp, timestamp:0, timestamp delta:0, msg length: 34,msg type id: 20, msg stream id:1
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload whole msg length: 34 and remaining bytes need to be read: 34
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload buffer len:34, need_read_length: 34
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read_message_payload current msg payload len:34
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk end, current time: 1684226038577329282, and read state: ReadBasicHeader, and chunk index: 12
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038577337888, and read state: ReadBasicHeader, and chunk index: 12
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038577345643, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S<-C ] [publish] app_name: live, stream_name: test, url parameters:
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [stream begin] app_name: live, stream_name: test, url parameters:
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=18
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] flushing framed transport
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] writing; remaining=101
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] framed transport flushed
[2023-05-16T08:33:58Z INFO rtmp::session::server_session] [ S->C ] [NetStream.Publish.Start] app_name: live, stream_name: test
[2023-05-16T08:33:58Z INFO rtmp::channels] event data: {"Publish":{"app_name":"live","stream_name":"test","info":{"id":"ec4a6966-d9ba-41c7-9684-291eae5fad78","sub_type":"PushRtmp","notify_info":{"request_url":"rtmp://localhost/live/test","remote_addr":"127.0.0.1:60294"}}}}
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks begin, current time: 1684226038577619140, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunk begin, current time: 1684226038577631834, and read state: ReadBasicHeader, and chunk index: 13
[2023-05-16T08:33:58Z TRACE rtmp::chunk::unpacketizer] read chunks end, current time: 1684226038577640510, and read state: ReadBasicHeader
[2023-05-16T08:33:58Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame