当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。