mediamtx/go.mod

75 lines
3.0 KiB
Modula-2
Raw Normal View History

2020-10-06 07:23:20 +00:00
module github.com/aler9/rtsp-simple-server
2019-12-28 21:07:03 +00:00
2023-03-12 11:42:11 +00:00
go 1.19
2019-12-28 21:07:03 +00:00
require (
code.cloudfoundry.org/bytefmt v0.0.0
2023-01-16 20:45:20 +00:00
github.com/alecthomas/kong v0.7.1
2023-03-19 23:34:13 +00:00
github.com/aler9/gortsplib/v2 v2.2.0
2023-02-21 22:46:20 +00:00
github.com/asticode/go-astits v1.11.0
2023-03-19 23:34:13 +00:00
github.com/bluenviron/gohlslib v0.0.0-20230319232056-d55d76265613
github.com/fsnotify/fsnotify v1.6.0
github.com/gin-gonic/gin v1.9.0
2022-12-15 23:50:47 +00:00
github.com/google/uuid v1.3.0
github.com/gookit/color v1.5.3
2022-12-15 23:50:47 +00:00
github.com/gorilla/websocket v1.5.0
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/notedit/rtmp v0.0.2
github.com/pion/ice/v2 v2.3.1
github.com/pion/interceptor v0.1.12
Implement Low-Latency HLS (#938) * add hlsVariant parameter * hls: split muxer into variants * hls: implement fmp4 segments * hls muxer: implement low latency mode * hls muxer: support audio with fmp4 mode * hls muxer: rewrite file router * hls muxer: implement preload hint * hls muxer: add various error codes * hls muxer: use explicit flags * hls muxer: fix error in aac pts * hls muxer: fix sudden freezes with video+audio * hls muxer: skip empty parts * hls muxer: fix video FPS * hls muxer: add parameter hlsPartDuration * hls muxer: refactor fmp4 muxer * hls muxer: fix CAN-SKIP-UNTIL * hls muxer: refactor code * hls muxer: show only parts of last 2 segments * hls muxer: implementa playlist delta updates * hls muxer: change playlist content type * hls muxer: improve video dts precision * hls muxer: fix video sample flags * hls muxer: improve iphone audio support * hls muxer: improve mp4 timestamp precision * hls muxer: add offset between pts and dts * hls muxer: close muxer in case of error * hls muxer: stop logging requests with the info level * hls muxer: rename entry into sample * hls muxer: compensate video dts error over time * hls muxer: change default segment count * hls muxer: add starting gap * hls muxer: set default part duration to 200ms * hls muxer: fix audio-only streams on ios * hls muxer: add playsinline attribute to video tag of default web page * hls muxer: keep mpegts as the default hls variant * hls muxer: implement encryption * hls muxer: rewrite dts estimation * hls muxer: improve DTS precision * hls muxer: use right SPS/PPS for each sample * hls muxer: adjust part duration dynamically * add comments * update readme * hls muxer: fix memory leak * hls muxer: decrease ram consumption
2022-05-31 17:17:26 +00:00
github.com/pion/rtp v1.7.13
github.com/pion/webrtc/v3 v3.1.58
github.com/stretchr/testify v1.8.2
golang.org/x/crypto v0.7.0
golang.org/x/net v0.8.0
gopkg.in/yaml.v2 v2.4.0
2019-12-28 21:07:03 +00:00
)
2021-03-10 14:06:45 +00:00
2021-11-13 08:55:35 +00:00
require (
github.com/abema/go-mp4 v0.10.1 // indirect
2023-02-21 22:46:20 +00:00
github.com/asticode/go-astikit v0.30.0 // indirect
github.com/bytedance/sonic v1.8.0 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
2021-11-13 08:55:35 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.11.2 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/grafov/m3u8 v0.11.1 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
2021-11-13 08:55:35 +00:00
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/orcaman/writerseeker v0.0.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pion/datachannel v1.5.5 // indirect
github.com/pion/dtls/v2 v2.2.6 // indirect
2022-12-15 23:50:47 +00:00
github.com/pion/logging v0.2.2 // indirect
github.com/pion/mdns v0.0.7 // indirect
2021-11-13 08:55:35 +00:00
github.com/pion/randutil v0.1.0 // indirect
2022-12-15 23:50:47 +00:00
github.com/pion/rtcp v1.2.10 // indirect
github.com/pion/sctp v1.8.6 // indirect
2022-12-15 23:50:47 +00:00
github.com/pion/sdp/v3 v3.0.6 // indirect
github.com/pion/srtp/v2 v2.0.12 // indirect
github.com/pion/stun v0.4.0 // indirect
github.com/pion/transport/v2 v2.0.2 // indirect
github.com/pion/turn/v2 v2.1.0 // indirect
github.com/pion/udp/v2 v2.0.1 // indirect
2021-11-13 08:55:35 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.9 // indirect
2021-11-13 08:55:35 +00:00
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2021-11-13 08:55:35 +00:00
)
replace github.com/orcaman/writerseeker => github.com/aler9/writerseeker v0.0.0-20220601075008-6f0e685b9c82
2022-12-22 20:19:06 +00:00
replace code.cloudfoundry.org/bytefmt => github.com/cloudfoundry/bytefmt v0.0.0-20211005130812-5bb3c17173e5