Add support OpenIPC WebRTC format

This commit is contained in:
Alexey Khit
2023-08-23 18:11:01 +03:00
parent 9f9dc7e844
commit 317b3b5eeb
2 changed files with 170 additions and 0 deletions
+2
View File
@@ -42,6 +42,8 @@ func streamsHandler(rawURL string) (core.Producer, error) {
// https://docs.aws.amazon.com/kinesisvideostreams-webrtc-dg/latest/devguide/what-is-kvswebrtc.html
// https://github.com/orgs/awslabs/repositories?q=kinesis+webrtc
return kinesisClient(rawURL, query, "WebRTC/Kinesis")
} else if format == "openipc" {
return openIPCClient(rawURL, query)
} else {
return go2rtcClient(rawURL)
}