TextTrack.language

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

languageTextTrack インターフェイスの読み取り専用プロパティで、このテキストトラックの言語を返します。

これは HTML の lang 属性と同じ値を使用します。これらの値は RFC 5646: Tags for Identifying Languages (BCP 47 とも) で文書化されています。

言語識別子を格納した文字列。例: 米国英語なら "en-US" 、ブラジルポルトガル語なら "pt-BR"

以下の例では、 language の値がコンソールに表示されます。

js
let video = document.querySelector("video");
let track = video.addTextTrack("captions", "Captions", "en-US");
track.mode = "showing";
console.log(track.language);

仕様書

Specification
HTML Standard
# dom-texttrack-language-dev

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
language

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support