--- title: MediaTrackSupportedConstraints.sampleRate slug: Web/API/MediaTrackSupportedConstraints/sampleRate translation_of: Web/API/MediaTrackSupportedConstraints/sampleRate ---
{{APIRef("Media Capture and Streams")}}
MediaTrackSupportedConstraints
ディクショナリーのsampleRate
プロパティは読み取り専用のBooleanの値です。user agentがsampleRate
の制約をサポートしている場合、MediaDevices.getSupportedConstraints()
の戻り値のオブジェクトに含まれtrue
が設定されます。この制約がサポートされない場合は含まれないため、false
になることはありません。
サポートされている制約のディクショナリーはnavigator.mediaDevices.getSupportedConstraints()
を呼び出すことで取得できます。
sampleRateConstraintSupported = supportedConstraintsDictionary["sampleRate"];
ユーザエージェントsampleRate
の制約をサポートしている場合、このプロパティはディクショナリーの中に含まれ、その値は常にtrue
の値です。このプロパティが存在しない場合は、サポートされている制約ディクショナリーには存在しないため、undefined
の値を取ることになります。
<div id="result"> </div>
#result { font: 14px "Arial", sans-serif; }
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")}}