mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-14 02:34:52 +00:00
56 lines
2.4 KiB
Modula-2
56 lines
2.4 KiB
Modula-2
module github.com/aler9/rtsp-simple-server
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
code.cloudfoundry.org/bytefmt v0.0.0-20211005130812-5bb3c17173e5
|
|
github.com/abema/go-mp4 v0.7.2
|
|
github.com/aler9/gortsplib v0.0.0-20220604232719-2fa3148a2751
|
|
github.com/asticode/go-astits v1.10.1-0.20220319093903-4abe66a9b757
|
|
github.com/fsnotify/fsnotify v1.4.9
|
|
github.com/gin-gonic/gin v1.7.2
|
|
github.com/gookit/color v1.4.2
|
|
github.com/grafov/m3u8 v0.11.1
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
|
github.com/notedit/rtmp v0.0.0
|
|
github.com/orcaman/writerseeker v0.0.0
|
|
github.com/pion/rtp v1.7.13
|
|
github.com/stretchr/testify v1.7.1
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
|
|
github.com/asticode/go-astikit v0.20.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.4.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/uuid v1.1.2 // indirect
|
|
github.com/icza/bitio v1.1.0 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/rtcp v1.2.9 // indirect
|
|
github.com/pion/sdp/v3 v3.0.5 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
|
|
golang.org/x/net v0.0.0-20220526153639-5463443f8c37 // indirect
|
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
|
|
google.golang.org/protobuf v1.26.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|
|
|
|
replace github.com/notedit/rtmp => github.com/aler9/rtmp v0.0.0-20210403095203-3be4a5535927
|
|
|
|
replace github.com/orcaman/writerseeker => github.com/aler9/writerseeker v0.0.0-20220601075008-6f0e685b9c82
|