AudioTrack.language - Web APIs 编辑
The read-only AudioTrack
property language
returns a string identifying the language used in the audio track. For tracks that include multiple languages (such as a movie in English in which a few lines are spoken in other languages), this should be the video's primary language.
Syntax
var audioTrackLanguage = AudioTrack.language;
Value
A DOMString
specifying the BCP 47 (RFC 5646) format language tag of the primary language used in the audio track, or an empty string (""
) if the language is not specified or known, or if the track doesn't contain speech.
For example, if the primary language used in the track is United States English, this value would be "en-US"
. For Brazilian Portuguese, the value would be "pt-BR"
.
BCD tables only load in the browser
This example locates all of a media element's primary language and translated audio tracks and returns a list of objects containing each of those tracks' id
, kind
, and language
.
This could then be used to build a user interface for selecting the language the user would like to listen to while watching a movie, for example.
function getAvailableLanguages(el) {
var trackList = [];
const wantedKinds = [
"main", "translation"
];
el.audioTracks.forEach(function(track) {
if (wantedKinds.includes(track.kind)) {
trackList.push({
id: track.id,
kind: track.kind,
language: track.language
});
}
});
return trackList;
}
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'AudioTrack.language' in that specification. | Living Standard | |
HTML5 The definition of 'AudioTrack.language' in that specification. | Recommendation |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论