Merge branch 'master' into treatment

This commit is contained in:
Trek H 2020-08-20 09:28:15 +09:30
commit 6ab9b145d8
1 changed files with 12 additions and 7 deletions

View File

@ -95,20 +95,25 @@ func (s *httpSender) Write(d []byte) (int, error) {
func (s *httpSender) Close() error { return nil }
func httpSend(d []byte, client *netsender.Sender, log func(lvl int8, msg string, args ...interface{})) error {
// Only send if "V0" is configured as an input.
// Only send if "V0" or "S0" are configured as input.
send := false
ip := client.Param("ip")
log(logger.Debug, "making pins, and sending recv request", "ip", ip)
pins := netsender.MakePins(ip, "V")
pins := netsender.MakePins(ip, "V,S")
for i, pin := range pins {
if pin.Name == "V0" {
send = true
switch pin.Name {
case "V0":
pins[i].MimeType = "video/mp2t"
case "S0":
pins[i].MimeType = "audio/x-wav"
default:
continue
}
pins[i].Value = len(d)
pins[i].Data = d
pins[i].MimeType = "video/mp2t"
send = true
break
}
}
if !send {
return nil