當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Audio audioTracks用法及代碼示例


Audio audioTracks屬性用於返回AudioTrackList對象。視頻的可用音軌由AudioTrackList對象表示。 AudioTrack對象用於表示可用的音頻軌道。

用法:

audioObject.audioTracks

返回值:


  1. AudioTrackList對象:它用於表示音頻的可用音軌。
  2. AudioTrack對象:它用於表示音軌。

以下示例程序旨在說明Audio audioTracks屬性:
例:獲取可用音軌的數量。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
       Audio audioTrack Property 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <h2 style="font-family:Impact"> 
      Audio audioTrack Property 
    </h2> 
    <br> 
  
    <audio id="Test_Audio" controls> 
        <source src="sample1.ogg" 
                type="audio/ogg"> 
        
        <source src="sample1.mp3" 
                type="audio/mpeg"> 
    </audio> 
  
    <p>To get the number of available  
      audio tracks, double click the "Return  
      Count" button.</p> 
    <br> 
  
    <button ondblclick="My_Audio()"> 
      Return Count 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Audio() { 
            var a = document.getElementById( 
              "Test_Audio").audioTracks.length; 
            
            document.getElementById("test").innerHTML = a; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:HTML下麵列出了DOM Audio audioTracks屬性:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Audio audioTracks Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。