golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
354 B
17 lines
354 B
// Package rawmessage contains a RTMP raw message reader/writer. |
|
package rawmessage |
|
|
|
import ( |
|
"time" |
|
|
|
"github.com/aler9/rtsp-simple-server/internal/rtmp/chunk" |
|
) |
|
|
|
// Message is a raw message. |
|
type Message struct { |
|
ChunkStreamID byte |
|
Timestamp time.Duration |
|
Type chunk.MessageType |
|
MessageStreamID uint32 |
|
Body []byte |
|
}
|
|
|