mirror of
https://github.com/koush/scrypted.git
synced 2026-02-13 10:22:57 +00:00
hikvision: do not alert on no audio
This commit is contained in:
@@ -47,7 +47,7 @@ class HikVisionCamera extends RtspSmartCamera implements Camera {
|
||||
if (streamSetup.videoCodecType !== 'H.264') {
|
||||
this.log.a(`This camera is configured for ${streamSetup.videoCodecType} on the main channel. Configuring it it for H.264 is recommended for optimal performance.`);
|
||||
}
|
||||
if (!this.isAudioDisabled() && streamSetup.audioCodecType !== 'AAC') {
|
||||
if (!this.isAudioDisabled() && streamSetup.audioCodecType && streamSetup.audioCodecType !== 'AAC') {
|
||||
this.log.a(`This camera is configured for ${streamSetup.audioCodecType} on the main channel. Configuring it it for AAC is recommended for optimal performance.`);
|
||||
}
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user