ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML Audio/Video DOM คุณสมบัติแท ร็กเสียง

❮ การอ้างอิง DOM เสียง/วิดีโอ HTML

ตัวอย่าง

รับจำนวนแทร็กเสียงที่มี:

var vid = document.getElementById("myVideo");
alert(vid.audioTracks.length);

ความหมายและการใช้งาน

คุณสมบัติ audioTracks ส่งกลับวัตถุ AudioTrackList

ออบเจ็กต์ AudioTrackList แสดงถึงแทร็กเสียงที่พร้อมใช้งานสำหรับเสียง/วิดีโอ

แทร็กเสียงที่มีอยู่แต่ละรายการจะแสดงด้วยออบเจ็กต์ AudioTrack


รองรับเบราว์เซอร์

Property
audioTracks Not supported 11 Not supported Not supported Not supported

ไวยากรณ์

audio|video.audioTracks

คืนมูลค่า

Type Description
AudioTrackList Object Represents the available audio tracks for the audio/video.

AudioTrackList Object:

  • audioTracks.length - get the number of audio tracks available
  • audioTracks.getTrackById(id) - get AudioTrack object by id
  • audioTracks[index] - get AudioTrack object by index

Note: The first available AudioTrack object is index 0

AudioTrack Object Represents an audio track.

AudioTrack Object Properties:

  • id - get the id of the audio track
  • kind - get the type of the audio track (can be: "alternative", "description", "main", "translation", "commentary", or "" (empty string)) 
  • label - get the label of the audio track
  • language - get the language of the audio track
  • enabled - get or set if the track is active (true|false)

❮ การอ้างอิง DOM เสียง/วิดีโอ HTML