Add support creality format for webrtc client #1600

This commit is contained in:
Alex X
2025-02-25 12:11:06 +03:00
parent 7d37f645ba
commit e304f4f34f
2 changed files with 112 additions and 0 deletions
+2
View File
@@ -54,6 +54,8 @@ func streamsHandler(rawURL string) (core.Producer, error) {
} else if format == "wyze" {
// https://github.com/mrlt8/docker-wyze-bridge
return wyzeClient(rawURL)
} else if format == "creality" {
return crealityClient(rawURL)
} else {
return whepClient(rawURL)
}