Timeline - Split by sector
#1
Hi,

I have a request. I't's very simple and require only few line of code...

In the option page there is the step skip option, where I can choose the lenght of my back/forward buttons (-10 min, -5 min, -3 min etc).
It's very useful and I can't say anything about it.

I would like to have the option to jump back/forward by segment.
If I choose 12, my video has 12 step to go to end, if I choose 6 only 6 step to the finish...

Your option is good if I have a short video, and I can select a precise moment, but if I have a long film, 1 second step is too little, and 10 mins too great.
(I know I can select custom jump, but would be great to have even the option like every other video decoder media player).

Could you release it?

Thanks
Reply
#2
You can seek by percentage

For example adding this to your advancesettings.xml would allow you to seek 10% at a time using Up/Down

xml:
<advancedsettings>
<video>
<usetimeseeking>false</usetimeseeking>
<percentseekforwardbig>10</percentseekforwardbig>
<percentseekbackwardbig>-10</percentseekbackwardbig>
</video>
</advancedsettings>
Reply
#3
You can also add it to any key in the keymap using the action

PlayerControl(seekpercentage(10))

So you could define several this way if you have enough keys on your control device.
Reply
#4
Thanks for the answers...

I'm using an Android TV. Where can I find advancesettings.xml?
Reply
#5
I have followed your suggestion and placed in this folder:

https://kodi.wiki/view/HOW-TO:Modify_the_video_cache

The new feature works fine... BUT

The normal step forward/beckward when holded the buttons repeated the command.
With your code the step is single even is I hold the button down.

Is there a way to have the same behaviour?
Reply

Logout Mark Read Team Forum Stats Members Help
Timeline - Split by sector0