blob: e4278ef3e860a7aca577f08258ac86893acbfda6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
---
title: VideoTrack.label
slug: Web/API/VideoTrack/label
tags:
- API
- HTML DOM
- Media
- Property
- Read-only
- Reference
- Video
- Video Track
- VideoTrack
- label
- metadata
- track
translation_of: Web/API/VideoTrack/label
---
<div>{{APIRef("HTML DOM")}}</div>
<p><span class="seoSummary">読み取り専用の <strong>{{domxref("VideoTrack")}}</strong> の <strong><code>label</code></strong> プロパティは、動画トラックの判読可能なラベルがある場合はそれを指定する文字列を返します。 それ以外の場合は、空の文字列を返します。</span></p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <em>videoTrackLabel</em> = <em>VideoTrack</em>.label;</pre>
<h3 id="Value" name="Value">値</h3>
<p>トラックのメタデータで利用可能な場合は、トラックの判読可能なラベルを指定する {{domxref("DOMString")}}。 それ以外の場合は、空の文字列(<code>""</code>)が返されます。</p>
<p>例えば、{{domxref("VideoTrack.kind", "kind")}} が <code>"sign"</code> のトラックには、<code>"手話通訳"</code> などの <code>label</code> が付いている場合があります。</p>
<h2 id="Example" name="Example">例</h2>
<p>この例では、指定されたメディア要素の動画トラックを選択するためにユーザーインターフェイスで使用される可能性のあるトラックの kind とラベルの配列を返します。 リストは、特定の kind のトラックのみを通過させるようにフィルタ処理されています。</p>
<pre class="brush: js">function getTrackList(el) {
var trackList = [];
const wantedKinds = [
"main", "alternative", "commentary"
];
el.videoTracks.forEach(function(track) {
if (wantedKinds.includes(track.kind)) {
trackList.push({
id: track.id,
kind: track.kind,
label: track.label
});
}
});
return trackList;
}</pre>
<p>結果の <code>trackList</code> には、その <code>kind</code> が配列 <code>wantedKinds</code> の中の1つである動画トラックの配列を含み、各エントリはトラックの {{domxref("VideoTrack.id", "id")}}、{{domxref("VideoTrack.kind", "kind")}}、および {{domxref("VideoTrack.label", "label")}} を提供します。</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-videotrack-label', 'VideoTrack: label')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.VideoTrack.label")}}</p>
|