From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../channelcount/index.html | 129 +++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 files/ja/web/api/mediatracksupportedconstraints/channelcount/index.html (limited to 'files/ja/web/api/mediatracksupportedconstraints/channelcount') diff --git a/files/ja/web/api/mediatracksupportedconstraints/channelcount/index.html b/files/ja/web/api/mediatracksupportedconstraints/channelcount/index.html new file mode 100644 index 0000000000..43a359a3cd --- /dev/null +++ b/files/ja/web/api/mediatracksupportedconstraints/channelcount/index.html @@ -0,0 +1,129 @@ +--- +title: MediaTrackSupportedConstraints.channelCount +slug: Web/API/MediaTrackSupportedConstraints/channelCount +translation_of: Web/API/MediaTrackSupportedConstraints/channelCount +--- +

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

+ +

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

+ +

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

+ +

文法

+ +
channelCountConstraintSupported = supportedConstraintsDictionary["channelCount"];
+ +

+ +

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

+ +

+ + + +
let result = document.getElementById("result");
+
+if (navigator.mediaDevices.getSupportedConstraints()["channelCount"]) {
+  result.innerHTML = "Supported!";
+} else {
+  result.innerHTML = "Not supported!";
+}
+ +

結果

+ +

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

+ +

仕様

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

ブラウザ互換性

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support{{CompatVersionUnknown}}{{ CompatGeckoDesktop(50) }}{{CompatNo}}{{CompatVersionUnknown}}{{CompatUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroidAndroid WebviewFirefox Mobile (Gecko)IE MobileOpera MobileSafari MobileChrome for Android
Basic support{{CompatUnknown}}{{CompatVersionUnknown}}{{ CompatGeckoMobile(50) }}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}{{CompatVersionUnknown}}
+
+ +

関連項目

+ + -- cgit v1.2.3-54-g00ecf