From 81bdcf624416c8609743c33b40eeb8d8a15064a9 Mon Sep 17 00:00:00 2001 From: Rafostar <40623528+Rafostar@users.noreply.github.com> Date: Wed, 4 Nov 2020 22:57:05 +0100 Subject: [PATCH] Enable "Fast Seeking" option Since GstPlayer pipeline ref count is now fixed by a patch, fast seeking option can be enabled. In my tests this seeking method is over 10x faster then normal seeking on some files, but the video time you end up with might differ up to few seconds from the value requested. --- clapper_src/prefs.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clapper_src/prefs.js b/clapper_src/prefs.js index 9701a4dc..8a182d06 100644 --- a/clapper_src/prefs.js +++ b/clapper_src/prefs.js @@ -42,8 +42,7 @@ class ClapperBehaviourPage extends PrefsBase.Grid this.addComboBoxText('Mode', [ ['normal', "Normal"], ['accurate', "Accurate"], - /* Needs gstplayer pipeline ref count fix */ - //['fast', "Fast"], + ['fast', "Fast"], ], 'seeking-mode'); this.addComboBoxText('Unit', [ ['second', "Second"],