From 654fa32b3a6b60aef8e8b083815b11a1ba572832 Mon Sep 17 00:00:00 2001 From: Alexey Khit Date: Sun, 25 Dec 2022 10:36:57 +0300 Subject: [PATCH] Fix packet size for MSE --- cmd/mp4/ws.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mp4/ws.go b/cmd/mp4/ws.go index ffe800e5..64faa6ee 100644 --- a/cmd/mp4/ws.go +++ b/cmd/mp4/ws.go @@ -9,7 +9,7 @@ import ( "strings" ) -const packetSize = 8192 +const packetSize = 1400 func handlerWSMSE(tr *api.Transport, msg *api.Message) error { src := tr.Request.URL.Query().Get("src")