Jump to % of a video
#1
Hi, i tried searching but didn't find any suggestion

Is it possible using numeric 0-9 jump to % of a video like popcorn hour ?

Example

0 restart the video
1 10% of the video
2 20% of the video
etc

Thankd
Reply
#2
Yes. (This is something I always liked on Dune media players.) You have to edit your userdata/keymaps/keyboard.xml or remote.xml, and replace (or add if it's not there - I forget what the default is) the numeric assignments for the <FullscreenVideo> section with:

PlayerControl(seekpercentage(10))

Where "10" is a percentage from 0 through 90. For example, this is what I have:

Code:
<zero>PlayerControl(seekpercentage(0))</zero>
<one>PlayerControl(seekpercentage(10))</one>
<two>PlayerControl(seekpercentage(20))</two>
<three>PlayerControl(seekpercentage(30))</three>
<four>PlayerControl(seekpercentage(40))</four>
<five>PlayerControl(seekpercentage(50))</five>
<six>PlayerControl(seekpercentage(60))</six>
<seven>PlayerControl(seekpercentage(70))</seven>
<eight>PlayerControl(seekpercentage(80))</eight>
<nine>PlayerControl(seekpercentage(90))</nine>
Reply
#3
Thank you very much works perfectly!
Reply

Logout Mark Read Team Forum Stats Members Help
Jump to % of a video0