我正在寻找一种为html5视频获取透明海报图像的解决方案。
我有一个页面,其中的背景图片在该页面的整个宽度上(例如1920x600)。我只想在此背景图片的中间显示视频播放按钮。视频和背景图片具有不同的宽高比。按下播放按钮后,视频应以正确的宽高比显示在背景图片上。
作为html5视频播放器,我使用Plyr。
这是播放器的实际实现:
<style>
.container_plyr_teaser {
padding: 16px 0px 0px 0px;
max-width: 1000px;
margin: auto;
}
.plyr {
border-radius: 15px;
}
.plyr--stopped .plyr__controls {
opacity: 0;
pointer-events: none;
}
</style>
<div class="container_plyr_teaser">
<video class="js-player" controls playsinline preload="none" id="player11" data-plyr-config='{"volume": 0.3, "resetOnEnd": true, "enabled": true, "storage": { "enabled": false }, "quality": { "default": 720 } }'>
<source src="wolken_360p.mp4" type="video/mp4" size="360">
<source src="wolken_720p.mp4" type="video/mp4" size="720">
<source src="wolken_1080p.mp4" type="video/mp4" size="1080">
</video>
</div>
我的第一个想法是使用透明的海报图像poster="Wolken_Poster_transparent_16x9.png"
来制作黑色视频播放器。
Using a transparent poster image results in a black video player
我的第二个想法是使用背景图片的精确剪裁作为视频海报图像。 这看起来很理想,但仅用于精确的分辨率。
exact cutout of the background picture as video poster
如果浏览器窗口的分辨率不正确,您将在视频海报图像和背景图像之间产生不吸引人的重叠。
有其他解决方案的想法吗?
答案 0 :(得分:0)
我的解决方案如下:
<!-- generate an extra button to start the video -->
<button id="button_teaser" onclick="playPause()">Play</button>
<video class="js-player" poster="poster.jpg" controls playsinline preload="none" id="video_teaser" data-plyr-config='{"volume": 0.3, "resetOnEnd": true, "enabled": true, "storage": { "enabled": false }, "quality": { "default": 720 } }'>
<source src="video_360p.mp4" type="video/mp4" size="360">
<source src="video_720p.mp4" type="video/mp4" size="720">
<source src="video_1080p.mp4" type="video/mp4" size="1080">
</video>
<!-- hide video -->
<script>
$('#video_teaser').hide();
</script>
<!-- after clicking the generated play button, hide play button and show video -->
<script>
$(document).ready(function(){
$('#button_teaser').click(function(){
$('#video_teaser').show();
$('#button_teaser').hide();
$('#video_teaser').get(0).play();
});
});
</script>
<!-- after playing video automatically hide video and show play button again -->
<script>
$(document).ready(function(){
$('#video_teaser').on('ended',function(){
$('#video_teaser').hide();
$('#button_teaser').show();
});
});
</script>