HTML | Atributo srclang

El atributo srclang se utiliza para especificar el idioma del texto de la pista . El atributo srclang se puede aplicar en el elemento <track> :
Nota: se requiere el atributo srclang con kind = “subtitles” .

Sintaxis

<track src="subtitles_en.vtt" kind="subtitles" srclang="en">

Ejemplo: a continuación se muestra el ejemplo del atributo srclang
 

html

<html>
 
<head>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
      GeeksforGeeks
  </h1>
    <h2>HTML srclang Attribute</h2>
 
    <video width="100"
           height="100"
           controls>
 
        <track src=
"https://write.geeksforgeeks.org/wp-content/uploads/11.mp4"
               id="myTrack1"
               kind="subtitles"
               srclang="en"
               label="English">
 
            <source id="myTrack"
                    src=
"https://write.geeksforgeeks.org/wp-content/uploads/11.mp4"
                    type="video/mp4">
    </video>
 
     
<p>
      Click the button to get
      the language of the track.
  </p>
 
 
    <button onclick="myFunction()">
        Get srclang
    </button>
 
    <p id="gfg"></p>
 
    <!-- Script to get the
      value of srclang property -->
    <script>
        function myFunction() {
            var x =
                document.getElementById("myTrack1");
           
            document.getElementById(
                "gfg").innerHTML = x.srclang;
        }
    </script>
</body>
 
</html>

Salida: haga clic en el botón para obtener el valor del atributo srclang: 
 

Navegadores compatibles: 
 

  • Google Chrome 18.0
  • Internet Explorer 10.0
  • Firefox 31.0
  • Ópera 15.0
  • Safari 6.0

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *