Change skip length in a video?

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Dirki Offline
Senior Member
Posts: 289
Joined: Aug 2012
Reputation: 0
Post: #1
How can I change the length of a skip I go forward / backward in a video? E.g. I want to skip 5 seconds forward by pressing the right arrow key and when I press it twice, I want to got 10 seconds forwards.
find quote
joebrady Offline
Team-XBMC Forum Moderator
Posts: 1,625
Joined: Apr 2007
Reputation: 6
Location: Floyds Knobs, IN
Post: #2
http://wiki.xbmc.org/index.php?title=Use...ttings.xml

see:

<timeseekforward>30</timeseekforward> <!-- Time to seek forward in seconds when doing a short seek. Defaults to 30. -->
<timeseekbackward>-30</timeseekbackward> <!-- Time to seek backward in seconds when doing a short seek. Defaults to -30. -->
<timeseekforwardbig>600</timeseekforwardbig> <!-- Time to seek forward in seconds when doing a long seek. Defaults to 600 (10 minutes). -->
<timeseekbackwardbig>-600</timeseekbackwardbig> <!-- Time to seek forward in seconds when doing a long seek. Defaults to -600 (10 minutes). -->
<percentseekforward>2</percentseekforward> <!-- Amount to seek forward as a percentage, when doing a short seek. Defaults to 2. -->
<percentseekbackward>-2</percentseekbackward> <!-- Amount to seek backward as a percentage, when doing a short seek. Defaults to -2. -->
<percentseekforwardbig>10</percentseekforwardbig> <!-- Amount to seek forward as a percentage, when doing a long seek. Defaults to 10. -->
<percentseekbackwardbig>-10</percentseekbackwardbig> <!-- Amount to seek forward as a percentage, when doing a long seek. Defaults to -10. -->

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first
find quote
solidsatras Offline
Senior Member
Posts: 289
Joined: Mar 2010
Reputation: 10
Post: #3
I don“t use this options myself but this advancedsettings.xml (just create a file named advancedsettings.xml in your userdata-folder and copy the
following code into it.) should do what you want.

Code:
<advancedsettings>
    <video> <!-- "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->
        <usetimeseeking>true</usetimeseeking>  <!-- Whether to use time based or percentage based seeking. -->
        <timeseekforward>5</timeseekforward>  <!-- Time to seek forward in seconds when doing a short seek.  Defaults to 30. -->
        <timeseekbackward>-5</timeseekbackward>  <!-- Time to seek backward in seconds when doing a short seek.  Defaults to -30. -->
    </video>
</advancedsettings>

The wiki-page on this topic is really good, give it a read:
advancedsettings.xml
find quote
joebrady Offline
Team-XBMC Forum Moderator
Posts: 1,625
Joined: Apr 2007
Reputation: 6
Location: Floyds Knobs, IN
Post: #4
How's that for service?

Always read the XBMC online-manual, FAQ and search the forums before posting.
Do NOT e-mail Team-XBMC members asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting, make sure you read this first
find quote
Dirki Offline
Senior Member
Posts: 289
Joined: Aug 2012
Reputation: 0
Post: #5
Many thanks, joebrady,

For the link and explanation.

And many thanks, solidsatras,

For the link and the code, all was easily done, the code works perfectly.

Many thanks again.
find quote