是否可以尋求網頁中顯示的html5 video
中的特定點?我的意思是,我可以輸入一個特定的時間值(比如說01:20:30:045
)並讓玩家控制(滑塊)移動到那個點並從那個點開始玩?在html5視頻中尋找點
在舊版本的mozilla vlcplugin
我認爲這是可能的seek(seconds,is_relative)
方法..但我想知道這是否可能在html視頻。
編輯:
我創建的頁面與視頻,並添加JavaScript作爲below.When我點擊鏈接,它顯示的click..but它不增加播放位置的時間..但繼續正常播放。
不應該改變視頻播放位置嗎?
HTML
<video id="vid" width="640" height="360" controls>
<source src="/myvid/test.mp4" type="video/mp4" />
</video>
<a id="gettime" href="#">time</a>
<p>
you clicked at:<span id="showtime"> </span>
</p>
的JavaScript
$(document).ready(function(){
var player = $('#vid').get(0);
$('#gettime').click(function(){
if(player){
current_time=player.currentTime;
$('#showtime').html(current_time+" seconds");
player.currentTime=current_time+10;
}
});
}
);
的[HTML5視頻尋求\ [更新\]可能的複製(http://stackoverflow.com/questions/9311570/html5-video-seeking-updated ) – rogerdpack