aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/videotracklist/length/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/videotracklist/length/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/videotracklist/length/index.html')
-rw-r--r--files/ja/web/api/videotracklist/length/index.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/files/ja/web/api/videotracklist/length/index.html b/files/ja/web/api/videotracklist/length/index.html
new file mode 100644
index 0000000000..dd4e0ca065
--- /dev/null
+++ b/files/ja/web/api/videotracklist/length/index.html
@@ -0,0 +1,67 @@
+---
+title: VideoTrackList.length
+slug: Web/API/VideoTrackList/length
+tags:
+ - API
+ - HTML DOM
+ - Media
+ - Property
+ - Read-only
+ - Reference
+ - Video
+ - VideoTrackList
+ - length
+ - list
+ - track
+translation_of: Web/API/VideoTrackList/length
+---
+<div>{{APIRef("HTML DOM")}}</div>
+
+<p><span class="seoSummary">読み取り専用の <strong>{{domxref("VideoTrackList")}}</strong> の <strong><code>length</code></strong> プロパティは、<code>VideoTrackList</code> 内のエントリ数を返します。 各エントリは、メディア要素内の1つの動画トラックを表す {{domxref("VideoTrack")}} です。</span> 値 0 は、メディアに動画トラックがないことを示します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var <em>trackCount</em> = <em>VideoTrackList</em>.length;</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p><code>VideoTrackList</code> に含まれる動画トラック数を示す数値。 <code>VideoTrackList</code> を {{domxref("VideoTrack")}} 型のオブジェクトの配列として扱うことで、各トラックにアクセスできます。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>このスニペットは、{{domxref("Document.querySelector", "querySelector()")}} によって {{Glossary("DOM")}} 内で見つかった最初の {{HTMLElement("video")}} 要素内の動画トラックの数を取得します。</p>
+
+<pre class="brush: js">var videoElem = document.querySelector("video");
+var numVideoTracks = 0;
+
+if (videoElem.videoTracks) {
+ numVideoTracks = videoElem.videoTracks.length;
+}
+</pre>
+
+<p>このサンプルは、{{domxref("VideoTrack")}} をサポートしていないブラウザーで失敗するのを避けるために、{{domxref("HTMLMediaElement.videoTracks")}} が定義されていることを確認していることに注意してください。</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#dom-videotracklist-length', 'VideoTrackList: length')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.VideoTrackList.length")}}</p>