diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/videotrack/kind | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/videotrack/kind')
-rw-r--r-- | files/ja/web/api/videotrack/kind/index.html | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/files/ja/web/api/videotrack/kind/index.html b/files/ja/web/api/videotrack/kind/index.html new file mode 100644 index 0000000000..9fbba5ceb9 --- /dev/null +++ b/files/ja/web/api/videotrack/kind/index.html @@ -0,0 +1,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> |