Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎么能把视频倒回,比如说 5 秒?
我试过player.seek(player.currentTime - 5)了,但这除了小停顿之外没有任何效果(比如在搜索时冻结 - 按下左箭头键时)。
player.seek(player.currentTime - 5)
如果您希望它向后播放(就像它向前播放一样),那是我从未见过的。
您可以尝试使用 向后循环播放.seek(),但它仍然不会有流畅的播放体验,例如向前播放。
.seek()
在我看来,OP 在询问倒带;不倒退。据我了解,“seek()”会在请求时间之前查找最近的关键帧。这就是为什么倒带几秒钟可能会给您带来意想不到的结果。FTQuest