• Как вставить видео на страницу?

    @sailordev
    Если ты будешь использовать встроенный в браузер проигрыватель HTML5. Он предоставляет возможность мутить (отключать звук) видео и автоматически воспроизводить его

    <html>
    <body>
    
    <video width="320" height="240" autoplay controls muted>
      <source src="видео.mp4" type="video/mp4">
      <source src="видео.ogg" type="video/ogg">
      Your browser does not support the video tag.
    </video>
    
    <p><strong>Note:</strong> The muted attribute of the video tag is not supported in Internet Explorer 9 and earlier versions.</p>
    
    </body>
    </html>
    Ответ написан
    Комментировать