mirror of
				https://github.com/aler9/gortsplib
				synced 2025-10-31 18:42:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package main
 | |
| 
 | |
| import (
 | |
| 	"log"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/aler9/gortsplib"
 | |
| )
 | |
| 
 | |
| // This example shows how to
 | |
| // 1. set additional client options
 | |
| // 2. connect to a RTSP server and read all tracks on a path
 | |
| 
 | |
| func main() {
 | |
| 	// Client allows to set additional client options
 | |
| 	c := &gortsplib.Client{
 | |
| 		// the stream transport (UDP, Multicast or TCP). If nil, it is chosen automatically
 | |
| 		Transport: nil,
 | |
| 		// timeout of read operations
 | |
| 		ReadTimeout: 10 * time.Second,
 | |
| 		// timeout of write operations
 | |
| 		WriteTimeout: 10 * time.Second,
 | |
| 		// called when a RTP packet arrives
 | |
| 		OnPacketRTP: func(ctx *gortsplib.ClientOnPacketRTPCtx) {
 | |
| 			log.Printf("RTP packet from track %d, payload type %d\n", ctx.TrackID, ctx.Packet.Header.PayloadType)
 | |
| 		},
 | |
| 		// called when a RTCP packet arrives
 | |
| 		OnPacketRTCP: func(ctx *gortsplib.ClientOnPacketRTCPCtx) {
 | |
| 			log.Printf("RTCP packet from track %d, type %T\n", ctx.TrackID, ctx.Packet)
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	// connect to the server and start reading all tracks
 | |
| 	panic(c.StartReadingAndWait("rtsp://localhost:8554/mystream"))
 | |
| }
 | 
