Disable seeking · Flowplayer
Seeking is disabled while the remaining API is still available, except for keyboard shortcuts.
<head/>
<style>
.flowplayer .fp-buffer, .flowplayer .fp-progress {
cursor: default;
}
<script>
flowplayer.conf.keyboard = false;
$(function () {
$(".fp-timeline").unbind("mousedown touchstart");
$(".flowplayer").removeClass("is-touch");
});