Fork of the original Kodi skin to change some things in my own interest
- For Kodi 18.7-Leia goto the old branch
It will only work if the Player Tempo setting is enabled.
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
<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>
<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
<addon id="skin.estouchy" ... name="Estouchy" ...
with ...
<<addon id="skin.estouchy_tempo" ... name="Estouchy Tempo" ...
- 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
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
- bySabi Files <> @bySabi
- Documentation improvement
- Feel free to send any PR