Compare commits

..

2 Commits

Author SHA1 Message Date
dexter
8ec0515f60 hls增加过滤功能,以及永久m3u8文件生成 2022-01-06 14:45:47 +08:00
dexter
e2113e03df 解决rtp包含多slice的情况 2022-01-03 22:52:46 +08:00
2 changed files with 15 additions and 15 deletions

10
go.mod
View File

@@ -3,11 +3,11 @@ module github.com/langhuihui/monibuca
go 1.16
require (
github.com/Monibuca/engine/v3 v3.4.2
github.com/Monibuca/plugin-gateway/v3 v3.0.7
github.com/Monibuca/plugin-gb28181/v3 v3.0.0
github.com/Monibuca/engine/v3 v3.4.3
github.com/Monibuca/plugin-gateway/v3 v3.0.8
github.com/Monibuca/plugin-gb28181/v3 v3.0.1
github.com/Monibuca/plugin-hdl/v3 v3.0.5
github.com/Monibuca/plugin-hls/v3 v3.0.3
github.com/Monibuca/plugin-hls/v3 v3.0.4
github.com/Monibuca/plugin-jessica/v3 v3.0.0-20210807235919-48ac5fbec646
github.com/Monibuca/plugin-logrotate/v3 v3.0.0-20210710104346-3db68431dcab
github.com/Monibuca/plugin-record/v3 v3.0.0-20210813073316-79dce1e0dc70
@@ -15,7 +15,7 @@ require (
github.com/Monibuca/plugin-rtsp/v3 v3.0.6
github.com/Monibuca/plugin-summary v0.0.0-20210821070131-2261e0efb7b9
github.com/Monibuca/plugin-ts/v3 v3.0.0
github.com/Monibuca/plugin-webrtc/v3 v3.0.0
github.com/Monibuca/plugin-webrtc/v3 v3.0.1
)
// replace github.com/Monibuca/plugin-gateway/v3 => ../plugin-gateway

20
go.sum
View File

@@ -8,16 +8,16 @@ github.com/Monibuca/engine/v3 v3.3.9/go.mod h1:odyqD/VTQDN4qgzajsgn7kW7MWDIzTHt+
github.com/Monibuca/engine/v3 v3.3.11/go.mod h1:LowMZ/iw4t6tfTZkSYZHIA0Z1HE8b7xfTDLO4WhX3Hg=
github.com/Monibuca/engine/v3 v3.3.16/go.mod h1:rgAUey5ziRhlh6WugWyA5fYKyGOvcwhtTMDk4sukE7E=
github.com/Monibuca/engine/v3 v3.4.1/go.mod h1:rgAUey5ziRhlh6WugWyA5fYKyGOvcwhtTMDk4sukE7E=
github.com/Monibuca/engine/v3 v3.4.2 h1:nfUIK9pm3pYxiYxHwbXeFWH1RODG+VsWObqMdZwjv7Q=
github.com/Monibuca/engine/v3 v3.4.2/go.mod h1:rgAUey5ziRhlh6WugWyA5fYKyGOvcwhtTMDk4sukE7E=
github.com/Monibuca/plugin-gateway/v3 v3.0.7 h1:2/juy2G+ZmkYeB7XXP7lCPTnzPvHvE0rhkwowXcA9z4=
github.com/Monibuca/plugin-gateway/v3 v3.0.7/go.mod h1:GPQDIll0o9+txwJ+ZwDcQTcR8rTE2SFZ/UbgmDKZTdg=
github.com/Monibuca/plugin-gb28181/v3 v3.0.0 h1:o9a3Dnud7eoHwDF1cmwX6ipr4u4VW/1/9X0yzi1jQ9Q=
github.com/Monibuca/plugin-gb28181/v3 v3.0.0/go.mod h1:foflXhJgzpYvMu3mlwQ/8JQ4ieo6RPSiubZ9t12FIbA=
github.com/Monibuca/engine/v3 v3.4.3 h1:xpAJx2whxy+T8lyfFaNmOVnN+/fxPWxcIP6uoH8OJVc=
github.com/Monibuca/engine/v3 v3.4.3/go.mod h1:Dik9pFxU9TFI5vj8Sv5QXZM+ooCs2fm9P7Uhe4yYNkQ=
github.com/Monibuca/plugin-gateway/v3 v3.0.8 h1:tWiWFhS48eIMy6kJYjm9w0vqnATjV+dge3JAE31GDpg=
github.com/Monibuca/plugin-gateway/v3 v3.0.8/go.mod h1:GPQDIll0o9+txwJ+ZwDcQTcR8rTE2SFZ/UbgmDKZTdg=
github.com/Monibuca/plugin-gb28181/v3 v3.0.1 h1:1CF/RWTZq1I/UHTWnM/uJtLGNTq8+0WeiwsZH7pI6x4=
github.com/Monibuca/plugin-gb28181/v3 v3.0.1/go.mod h1:foflXhJgzpYvMu3mlwQ/8JQ4ieo6RPSiubZ9t12FIbA=
github.com/Monibuca/plugin-hdl/v3 v3.0.5 h1:D7DO1a4wdNIQw5grcrSuIu2TMBTk7hTlNJjxEsMbvSE=
github.com/Monibuca/plugin-hdl/v3 v3.0.5/go.mod h1:ImBolaupuPvXGoWD5hOUUMvSPPuzrg2lzVWqhcXmdVA=
github.com/Monibuca/plugin-hls/v3 v3.0.3 h1:IWLY9TiHkbFPVuMIKkljZfIch1RUuRSAXXKnIdYom84=
github.com/Monibuca/plugin-hls/v3 v3.0.3/go.mod h1:HRfFcEfpBZYrbtj4j46wLhYuAcZdTukzpw87CLf8FcE=
github.com/Monibuca/plugin-hls/v3 v3.0.4 h1:ScE5udftVbVIP+DXIm/pePnbL7msEir0tInwt+ifBOw=
github.com/Monibuca/plugin-hls/v3 v3.0.4/go.mod h1:HRfFcEfpBZYrbtj4j46wLhYuAcZdTukzpw87CLf8FcE=
github.com/Monibuca/plugin-jessica/v3 v3.0.0-20210807235919-48ac5fbec646 h1:wfge6Eakjoh+j6kRb8JlTazLWImWVbRqAVB/FlB4nHk=
github.com/Monibuca/plugin-jessica/v3 v3.0.0-20210807235919-48ac5fbec646/go.mod h1:ycVTGh96OWFjzFfK7ErMcxTgohNZwagHRDab0GkTIFU=
github.com/Monibuca/plugin-logrotate/v3 v3.0.0-20210710104346-3db68431dcab h1:s/yYXSOwXQxSdrPALlq8fHcdhtWnsM0RBPwAo2d+FOU=
@@ -32,8 +32,8 @@ github.com/Monibuca/plugin-summary v0.0.0-20210821070131-2261e0efb7b9 h1:8JVquYo
github.com/Monibuca/plugin-summary v0.0.0-20210821070131-2261e0efb7b9/go.mod h1:1kiDXMF82y299q2+KKEeaKRpQFvVkiGAIGg8OhYk9Qk=
github.com/Monibuca/plugin-ts/v3 v3.0.0 h1:W6A5onbEDKAxuewl46PJPippV5E3fu7UV6rK+Hq/q5s=
github.com/Monibuca/plugin-ts/v3 v3.0.0/go.mod h1:S+sUqUbZTiRws/GHoxcVVQdhOcuUQUxoAGDeQOAgKw0=
github.com/Monibuca/plugin-webrtc/v3 v3.0.0 h1:L9ISc3atJ99OcfPwPKm1mA6HxJx7MPxyagRaQ9V5v0g=
github.com/Monibuca/plugin-webrtc/v3 v3.0.0/go.mod h1:IVauqiKgEXl/Wc2I7/GcUvO/9YYndwQwYyLP8EzYGR8=
github.com/Monibuca/plugin-webrtc/v3 v3.0.1 h1:FF6gviuoPny+oneRhM/+hUWOw+jyEWfKX9t8Ifc/7Dg=
github.com/Monibuca/plugin-webrtc/v3 v3.0.1/go.mod h1:IVauqiKgEXl/Wc2I7/GcUvO/9YYndwQwYyLP8EzYGR8=
github.com/Monibuca/utils/v3 v3.0.0/go.mod h1:RpNS95gapWs6gimwh8Xn2x72FN5tO7Powabj7dTFyvE=
github.com/Monibuca/utils/v3 v3.0.1/go.mod h1:RpNS95gapWs6gimwh8Xn2x72FN5tO7Powabj7dTFyvE=
github.com/Monibuca/utils/v3 v3.0.2/go.mod h1:RpNS95gapWs6gimwh8Xn2x72FN5tO7Powabj7dTFyvE=