La propiedad HTML DOM Audio textTracks se utiliza para devolver un objeto TextTrackList. El objeto TextTrackList representa las pistas de texto disponibles para el audio. Cada pista de texto disponible está representada por un objeto TextTrack. Sintaxis:
audioObject.textTracks
Valor de retorno: Devuelve un objeto TextTrackList que representa las pistas de texto disponibles para el audio. Los objetos TextioTrackList son:
- length: Se utiliza para obtener el número de pistas de texto disponibles en el audio
- [índice]: se utiliza para obtener el objeto TextTrack por índice
Ejemplos:
html
<!DOCTYPE html> <html> <head> <title>HTML DOM Audio textTracks Property </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML DOM Audio textTracks Property </h2> <audio id="track" controls> <source src="bells.ogg" type="audio/ogg"> <source src="bells.mp3" type="audio/mpeg"> <track src="demo_sub.vtt"> Your browser does not support the audio element. </audio> <p>Double-click the "Access Audio" button to get the duration of the audio, in seconds.</p> <button onclick="access()">Access Audio</button> <p id="test"></p> <script> function access() { // Accessing audio element duration. var m = document.getElementById( "track").textTracks.length;; document.getElementById("test").innerHTML = m; } </script> </body> </html>
Salida: Antes de hacer clic en el botón: Después de hacer clic en el botón: Navegadores compatibles: Los navegadores compatibles con DOM Audio textTracks Property se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA