Remove PCMU for two way for DVRIP source #1111

This commit is contained in:
Alex X
2024-05-18 17:14:25 +03:00
parent 2b3e6a2730
commit 686fb374e9
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -23,8 +23,9 @@ func Dial(url string) (core.Producer, error) {
Kind: core.KindAudio, Kind: core.KindAudio,
Direction: core.DirectionSendonly, Direction: core.DirectionSendonly,
Codecs: []*core.Codec{ Codecs: []*core.Codec{
// leave only one codec here for better compatibility with cameras
// https://github.com/AlexxIT/go2rtc/issues/1111
{Name: core.CodecPCMA, ClockRate: 8000, PayloadType: 8}, {Name: core.CodecPCMA, ClockRate: 8000, PayloadType: 8},
{Name: core.CodecPCMU, ClockRate: 8000, PayloadType: 0},
}, },
}, },
} }