diff --git a/src/components/deviceprofilebuilder.js b/src/components/deviceprofilebuilder.js index 5c804275..422ba5f9 100644 --- a/src/components/deviceprofilebuilder.js +++ b/src/components/deviceprofilebuilder.js @@ -171,6 +171,15 @@ function getCodecProfiles() { createProfileCondition("IsSecondaryAudio", "Equals", false) ] }); + + CodecProfiles.push({ + Type: "Audio", + Codec: "flac", + Conditions: [ + createProfileCondition("AudioSampleRate", "LessThanEqual", "96000"), + createProfileCondition("AudioBitDepth", "LessThanEqual", "24") + ] + }); } return CodecProfiles;