作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个托管视频的网站;我确实安装了 ffmpeg 并且可以正常工作。我知道如何从视频中提取单帧以用作显示图像,但我需要找到一种方法,当有人将鼠标悬停在视频上时,它会翻转几帧。我几天来一直在寻找解决方案,但似乎没有任何效果。有什么帮助吗?
最佳答案
有很多方法可以解决这个问题。我真的不明白您是指播放器中的预览还是缩略图上的预览;我将假设后者(但无论如何逻辑都保持不变)。
从电影中提取帧后,最难的部分就完成了。你现在可以做什么:
<div class="thumbnail">
<div class="image">
<img src="something" class="loaded"/>
</div>
</div>
$('.thumbnail')
.on('mouseenter',function(){next($(this));})
.on('mouseleave',function(){stop($(this));})
function next(){
start timer
on time, go to next thumbnail
does it exist? then swap current thumbnail with next thumbnail and stop;
does it not? check number of thumbnails loaded
is it equal to 6? then we reached the end, loop back to start and stop;
is it not? then add the new thumb and begin loading it
while doing that, loop back to start;
}
function stop(){stop the timer}
关于php - 如何对flv视频进行悬停预览?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14844653/
我是一名优秀的程序员,十分优秀!