mirror of
https://github.com/aler9/gortsplib
synced 2025-10-05 23:26:54 +08:00
44 lines
958 B
Go
44 lines
958 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/aler9/gortsplib"
|
|
)
|
|
|
|
// This example shows how to
|
|
// 1. set additional client options
|
|
// 2. connect to a RTSP server
|
|
// 3. read all tracks on a path
|
|
|
|
func main() {
|
|
// ClientDialer allows to set additional client options
|
|
dialer := gortsplib.ClientDialer{
|
|
// the stream protocol (UDP or TCP). If nil, it is chosen automatically
|
|
StreamProtocol: nil,
|
|
// timeout of read operations
|
|
ReadTimeout: 10 * time.Second,
|
|
// timeout of write operations
|
|
WriteTimeout: 10 * time.Second,
|
|
}
|
|
|
|
// connect to the server and start reading all tracks
|
|
conn, err := dialer.DialRead("rtsp://localhost:8554/mystream")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer conn.Close()
|
|
|
|
// read track frames
|
|
readerDone := conn.OnFrame(func(id int, typ gortsplib.StreamType, buf []byte) {
|
|
fmt.Printf("frame from track %d, type %v: %v\n", id, typ, buf)
|
|
})
|
|
|
|
// catch any error
|
|
err = <-readerDone
|
|
panic(err)
|
|
}
|