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


HTML Video audioTracks用法及代碼示例


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

用法

videoObject.audioTracks

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


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Video audioTracks Property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1> 
      GeeksforGeeks 
    </h1> 
    <h2> 
      Video audioTracks Property 
    </h2> 
    <br> 
  
    <video id="Test_Video" 
           width="360"
           height="240" 
           controls> 
        
        <source src="samplevideo.mp4" 
                type="video/mp4"> 
        
        <source src="movie.ogg" 
                type="video/ogg"> 
    </video> 
  
    <p> 
      To get the number of available audio tracks,  
      double click the "Return Count" button. 
    </p> 
  
    <button ondblclick="My_Video()"> 
      Return Count 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Video() { 
            var v =  
                document.getElementById( 
                  "Test_Video").audioTracks.length; 
            
            document.getElementById( 
              "test").innerHTML = v; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

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

支持的瀏覽器:HTML不支持主要的瀏覽器。 DOM Video audioTracks屬性。



相關用法


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