--- title: MediaTrackSupportedConstraints.sampleRate slug: Web/API/MediaTrackSupportedConstraints/sampleRate translation_of: Web/API/MediaTrackSupportedConstraints/sampleRate ---

{{APIRef("Media Capture and Streams")}}

MediaTrackSupportedConstraintsディクショナリーのsampleRateプロパティは読み取り専用のBooleanの値です。user agentsampleRateの制約をサポートしている場合、MediaDevices.getSupportedConstraints()の戻り値のオブジェクトに含まれtrueが設定されます。この制約がサポートされない場合は含まれないため、falseになることはありません。

サポートされている制約のディクショナリーはnavigator.mediaDevices.getSupportedConstraints()を呼び出すことで取得できます。

文法

sampleRateConstraintSupported = supportedConstraintsDictionary["sampleRate"];

ユーザエージェントsampleRateの制約をサポートしている場合、このプロパティはディクショナリーの中に含まれ、その値は常にtrueの値です。このプロパティが存在しない場合は、サポートされている制約ディクショナリーには存在しないため、undefinedの値を取ることになります。

let result = document.getElementById("result");

if (navigator.mediaDevices.getSupportedConstraints()["sampleRate"]) {
  result.innerHTML = "Supported!";
} else {
  result.innerHTML = "Not supported!";
}

結果

{{ EmbedLiveSample('Example', 600, 80) }}

仕様

仕様 状況 コメント
{{ SpecName('Media Capture', '#widl-MediaTrackSupportedConstraints-sampleRate', 'sampleRate') }} {{ Spec2('Media Capture') }} 初版

ブラウザ互換性

{{Compat("api.MediaTrackSupportedConstraints.sampleRate")}}

関連項目