Skip to content

Commit

Permalink
fix(homebridge): increase simultaneous stream limit
Browse files Browse the repository at this point in the history
Closes #518
  • Loading branch information
dgreif committed Jan 1, 2021
1 parent bd1a552 commit 6d985c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homebridge/camera-source.ts
Expand Up @@ -41,7 +41,7 @@ function getDurationSeconds(start: number) {

export class CameraSource implements CameraStreamingDelegate {
public controller = new hap.CameraController({
cameraStreamCount: 2,
cameraStreamCount: 10,
delegate: this,
streamingOptions: {
supportedCryptoSuites: [SRTPCryptoSuites.AES_CM_128_HMAC_SHA1_80],
Expand Down

0 comments on commit 6d985c4

Please sign in to comment.