¿Cómo especificar la URL del archivo multimedia en HTML5?

Aquí veremos cómo configurar la URL de un archivo multimedia usando HTML. Para configurar la URL del archivo multimedia, usamos la etiqueta <source>. Esta etiqueta se utiliza para adjuntar archivos multimedia como audio, video e imágenes. Los elementos <audio>, <video> y <picture> contienen el elemento <source> .

Sintaxis:

<source src="" type="">
   // Statements
</source>

Ejemplo:

HTML

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to specify the URL of
        the media file in HTML5?
    </title>
</head>
  
<body style="text-align: center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        How to specify the URL of
        the media file in HTML5?
    </h3>
  
    <video width="400" height="350" controls>
        <source src=
"https://media.geeksforgeeks.org/wp-content/uploads/output-1.mp4"
            type="video/mp4">
    </video>
</body>
  
</html>

Producción:

Navegadores compatibles:

  • Google Chrome 4.0
  • Internet Explorer 9.0
  • Firefox 3.5
  • Safari 4.0
  • Ópera 10.5

Publicación traducida automáticamente

Artículo escrito por ppatelkap 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 *