gb28181 sdp 解析

This commit is contained in:
shikong 2025-01-25 22:37:27 +08:00
parent d997352b66
commit 322568c7a2
Signed by: Shikong
GPG Key ID: BD85FF18B373C341

View File

@ -1,6 +1,7 @@
package test
import (
"github.com/duke-git/lancet/v2/formatter"
"github.com/pion/sdp"
"io"
"regexp"
@ -50,4 +51,7 @@ f=
t.Error(err)
}
t.Logf("%#v\n", session)
pretty, _ := formatter.Pretty(session)
t.Logf("%s\n", pretty)
}