Skip to content

Kodi skin forked from 'estouchy'. To add some touch controls to my liking: play speed

License

Notifications You must be signed in to change notification settings

bySabi/skin.estouchy_tempo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

skin.estouchy_tempo

Fork of the original Kodi skin to change some things in my own interest

Fork of skin.estouchy version 3.0.2. Only for current Kodi master branch

Changes

Use the Forward and Rewind buttons to speed up the video playback speed. Maximum 2X

It will only work if the Player Tempo setting is enabled.

Maintenance instructions

1- Check that the version of the addon matches the latest one in the Kodi repository.

Latest Kodi skin.estouchy

2- Clone the entire Kodi repository

git clone https://github.com/xbmc/xbmc.git

3- Copy content of folder /addons/skin.estouchy to skin.estouchy_tempo repo. (Replace all files)

4- Edit skin.estouchy_tempo/xml/IncludesPlayerControls.xml

Replace#1:

     <control type="group">
         ...
            <control type="button">
               ...
               <onclick>PlayerControl(Rewind)</onclick>
 with (only "<onclick" line) ...
      <onclick condition="!Player.TempoEnabled">PlayerControl(Rewind)</onclick>
      <onclick condition="Player.TempoEnabled">PlayerControl(tempodown)</onclick>

Replace#2:

     <control type="group">
         ...
            <control type="button">
               ...
               <onclick>PlayerControl(Forward)</onclick>
 with (only "<onclick" line) ...
      <onclick condition="!Player.TempoEnabled">PlayerControl(Forward)</onclick>
      <onclick condition="Player.TempoEnabled">PlayerControl(tempoup)</onclick>

5- Edit skin.estouchy_tempo/addon.xml

Replace#1:

     <addon id="skin.estouchy" ... name="Estouchy" ...
 with ...
      <<addon id="skin.estouchy_tempo" ... name="Estouchy Tempo" ...

Usage

  • Enable 'tempo'

Edit /Android/data/org.xbmc.kodi/files/.kodi/userdata/advancedsettings.xml and add:

<video>
  <maxtempo>2</maxtempo>
</video>
  • Enable "Sync playback to display" on Kodi > Settings > Video

  • Download this repo like a ZIP file. install it as is in Kodi

CAUTION!!

This is a project created for my own use. I have shared it in case anyone has to be useful. Use it at your own risk

Credits

author

Contributing

  • Documentation improvement
  • Feel free to send any PR

New Document

About

Kodi skin forked from 'estouchy'. To add some touch controls to my liking: play speed

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published