Jak ustawić obraz miniatury na wideo HTML5?

119

Czy istnieje sposób na ustawienie miniatury w wideo HTML5? Chcę zobaczyć zdjęcia przed rozpoczęciem gry. Mój kod wygląda tak:

<video width="470" height="255" controls>
    <source src="video.mp4" type="video/mp4">
    <source src="video.ogg" type="video/ogg">
    <source src="video.webm" type="video/webm">
    <object data="video.mp4" width="470" height="255">
    <embed src="video.swf" width="470" height="255">
    </object>
</video>

Dzięki!

Ivijan Stefan Stipić
źródło

Odpowiedzi:

207

Dodaj poster="placeholder.png"do tagu wideo.

<video width="470" height="255" poster="placeholder.png" controls>
    <source src="video.mp4" type="video/mp4">
    <source src="video.ogg" type="video/ogg">
    <source src="video.webm" type="video/webm">
    <object data="video.mp4" width="470" height="255">
    <embed src="video.swf" width="470" height="255">
    </object>
</video>

Czy to działa?

Jason Brooks
źródło
1
Więcej informacji można znaleźć w witrynie MDN: developer.mozilla.org/en-US/docs/Web/HTML/Element/video . Atrybut jest dość dobrze obsługiwany.
Jhon
89

Wyświetlaj pierwszą klatkę wideo jako miniaturę:

Dodaj preload="metadata"do tagu wideo i drugą z pierwszej klatki #t=0.5do źródła wideo :

<video width="400" controls="controls" preload="metadata">
  <source src="https://www.w3schools.com/html/mov_bbb.mp4#t=0.5" type="video/mp4">
</video>

David Ben Dahan
źródło
11
Problem polega na tym, że wideo zaczyna się od określonego #t=0.5. Powiedzmy, jeśli chciał miniatur od t = 8 oraz następnie vid byłoby zacząć od 8 sekundę co nie jest ideałem jest to :)
Marko
23

Jeśli chcesz, aby pierwsza klatka wideo była miniaturą, możesz użyć

Add #t=0.1 to your video source, like below

<video width="320" height="240" controls>
  <source src="video.mp4#t=0.1" type="video/mp4">
</video>

UWAGA: upewnij się, jaki typ wideo posiadasz (np. Mp4, ogg, webm itp.)

PVCS
źródło
4
Tylko jeśli wideo zostało wstępnie załadowane. W przeciwnym razie nadal będzie wyświetlać czarne tło w IE, dopóki wideo nie zostanie załadowane przez przeglądarkę!
Hafenkranich
3

Wygląda na to, że jest tam wyświetlany dodatkowy obraz.

Możesz spróbować tego użyć

<img src="/images/image_of_video.png" alt="image" />
/* write your code for the video here */

Teraz używając jQuery odtwórz wideo i ukryj obraz jako

$('img').click(function () {
  $(this).hide();
  // use the parameters to play the video now..
})
Afzaal Ahmad Zeeshan
źródło
Dziękuję Ci. Nie korzystałem z opcji jQuery do gry, ale mogę spróbować. Czy masz jakieś dobre sugestie?
Ivijan Stefan Stipić
To najlepsza sugestia, dzięki niej możesz automatycznie ukryć obraz, który był tam wyświetlany. I po prostu odtwórz wideo za pomocą $('video').play();:)
Afzaal Ahmad Zeeshan
3
<?php
$thumbs_dir = 'E:/xampp/htdocs/uploads/thumbs/';
$videos = array();
if (isset($_POST["name"])) {
 if (!preg_match('/data:([^;]*);base64,(.*)/', $_POST['data'], $matches)) {
  die("error");
 }
 $data = $matches[2];
 $data = str_replace(' ', '+', $data);
 $data = base64_decode($data);
 $file = 'text.jpg';
 $dataname = file_put_contents($thumbs_dir . $file, $data);
}
?>
//jscode
<script type="text/javascript">
 var videos = <?= json_encode($videos); ?>;
 var video = document.getElementById('video');
 video.addEventListener('canplay', function () {
     this.currentTime = this.duration / 2;
 }, false);
 var seek = true;
 video.addEventListener('seeked', function () {
    if (seek) {
         getThumb();
    }
 }, false);

 function getThumb() {
     seek = false;
     var filename = video.src;
     var w = video.videoWidth;//video.videoWidth * scaleFactor;
     var h = video.videoHeight;//video.videoHeight * scaleFactor;
     var canvas = document.createElement('canvas');
     canvas.width = w;
     canvas.height = h;
     var ctx = canvas.getContext('2d');
     ctx.drawImage(video, 0, 0, w, h);
     var data = canvas.toDataURL("image/jpg");
     var xmlhttp = new XMLHttpRequest;
     xmlhttp.onreadystatechange = function () {
         if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
         }
     }
     xmlhttp.open("POST", location.href, true);
     xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
     xmlhttp.send('name=' + encodeURIComponent(filename) + '&data=' + data);
 }
  function failed(e) {
     // video playback failed - show a message saying why
     switch (e.target.error.code) {
         case e.target.error.MEDIA_ERR_ABORTED:
             console.log('You aborted the video playback.');
             break;
         case e.target.error.MEDIA_ERR_NETWORK:
             console.log('A network error caused the video download to fail part-way.');
             break;
         case e.target.error.MEDIA_ERR_DECODE:
             console.log('The video playback was aborted due to a corruption problem or because the video used features your browser did not support.');
              break;
          case e.target.error.MEDIA_ERR_SRC_NOT_SUPPORTED:
              console.log('The video could not be loaded, either because the server or network failed or because the format is not supported.');
              break;
          default:
              console.log('An unknown error occurred.');
              break;
      }


  }
</script>
//Html
<div>
    <video   id="video" src="1499752288.mp4" autoplay="true"  onerror="failed(event)" controls="controls" preload="none"></video>
</div>
poniżający
źródło
-1

<video width="400" controls="controls" preload="metadata">
  <source src="https://www.youtube.com/watch?v=Ulp1Kimblg0">
</video>

Hardik Shah
źródło
-1

1) dodaj poniższe jQuery:

$thumbnail.on('click', function(e){
 e.preventDefault();
 src = src+'&autoplay=1'; // src: the original URL for embedding 
 $videoContainer.empty().append( $iframe.clone().attr({'src': src}) ); // $iframe: the original iframe for embedding
 }
);

uwaga: w pierwszym src (pokazanym) dodaj oryginalny link do youtube.

2) edytuj tag iframe jako:

<iframe width="1280" height="720" src="https://www.youtube.com/embed/nfQHF87vY0s?autoplay=1" frameborder="0" allowfullscreen></iframe>

Uwaga: skopiuj wklej identyfikator wideo YouTube po osadzeniu / w elemencie iframe src.

ashwinrishipj
źródło