blob: 9fbba5ceb9151c36ee226b1573542e53a150b9fa (
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
|
---
title: VideoTrack.kind
slug: Web/API/VideoTrack/kind
tags:
- API
- HTML DOM
- Media
- Property
- Read-only
- Reference
- Video
- Video Track
- VideoTrack
- id
- track
translation_of: Web/API/VideoTrack/kind
---
<div>{{APIRef("HTML DOM")}}</div>
<p><span class="seoSummary"><strong><code>kind</code></strong> プロパティには、<strong>{{domxref("VideoTrack")}}</strong> に含まれる動画のカテゴリを示す文字列が含まれています。</span> この <code>kind</code> を使用して、特定のトラックを有効または無効にするシナリオを決定できます。 動画トラックで利用可能な kind の一覧については、{{anch("Video track kind strings","動画トラックの kind 文字列")}}を参照してください。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <em>trackKind</em> = <em>VideoTrack</em>.kind;</pre>
<h3 id="Value" name="Value">値</h3>
<p>メディアが表すコンテンツの種類を指定する {{domxref("DOMString")}}。 この文字列は、以下の{{anch("Video track kind strings","動画トラックの kind 文字列")}}にあるもののうちの1つです。</p>
<h2 id="Video_track_kind_strings" name="Video_track_kind_strings">動画トラックの kind 文字列</h2>
<p>動画トラックで利用可能な kind は次のとおりです。</p>
<dl>
<dt><code>"alternative"</code></dt>
<dd>メイントラックに代わる可能性のあるもの。 例えば、異なる動画テイクや、音楽だけで会話がないサウンドトラックのバージョンなど。</dd>
<dt><code>"captions"</code></dt>
<dd>キャプション付きのメイン動画トラックのバージョン。</dd>
<dt><code>"main"</code></dt>
<dd>プライマリ動画トラック。</dd>
<dt><code>"sign"</code></dt>
<dd>音声トラックの手話による通訳。</dd>
<dt><code>"subtitles"</code></dt>
<dd>字幕付きのメイン動画トラックのバージョン。</dd>
<dt><code>"commentary"</code></dt>
<dd>解説を含む動画トラック。 これは、例えば映画で監督の解説トラックを含めるために使用される場合があります。</dd>
<dt><code>""</code>(空の文字列)</dt>
<dd>トラックに明確な kind がない、またはトラックのメタデータによって提供された kind が{{Glossary("user agent","ユーザーエージェント")}}に認識されていません。</dd>
</dl>
<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-kind', 'VideoTrack: kind')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.VideoTrack.kind")}}</p>
|