2019-11-13, 00:41
Is there a way to disable the OSD shown during the faster video playback ?
(2019-05-16, 02:03)Landstander Wrote: I used the Backup addon to dump my TV's Kodi setup to a USB stick. Added a new file "advancedsettings.xml" to the backup folder/userdata.I created some new pngs for a Plex Kodi addon that used the confluence pngs as a starting point. You can grab OSD1.6 thru 2.0 from my github repo and copy them to your local install (your location will be different for the confluence plugin):
The file only contained:
<advancedsettings>
<video>
<maxtempo>2</maxtempo>
</video>
</advancedsettings>
When I returned the stick to my TV and selected 'Restore' from the Backup addon, it told me I needed to restore the advanced settings first and then reload Kodi. I did, and didn't bother to do the rest of the restore later since all I wanted was the advanced settings.
I now can stretch to 2x playback, but I am using the Confluence skin so after 1.5x on my GUI the speed goes blank, even though it runs faster.
Anyone have skin suggestions to get Confluence to display the actual speed?
Edit 2: Found this information for each tempo step under DialogSeekBar.xml...
<control type="image">
<left>45</left>
<top>4</top>
<width>40</width>
<height>40</height>
<texture>OSD1.5x.png</texture>
<visible>String.IsEqual(Player.PlaySpeed,1.50)</visible>
</control>
I tried adding additional steps, but no luck (as I expected). I don't know if there is OSD2.0x.png (etc.) somewhere. The ones already referenced (0.8-1.5) aren't in the backup folders or anywhere else I can access.
Also, the MaxTempo needs to be "2.1" not "2.0". I guess it's a rounding error(?) Otherwise your top speed is 1.9x
(2016-09-19, 09:17)Memphiz Wrote: I thought we wanted this to be a skin feature, not a keymap feature tbh
(2016-09-21, 14:31)raven6679 Wrote: 8.
Create a "keyboard.xml" file inside "keymaps" folder.
Assign some keys for tempo up/down. In following example (taken from this thread) there is Ctrl+Left and Ctrl+Right mapped.
Edit its content, write as follows (or use your own keyboard shortcuts):
For specific info about keymaps, look here: http://kodi.wiki/view/keymapCode:<?xml version="1.0" encoding="UTF-8"?>
<keymap>
<global>
<keyboard>
<left mod="ctrl">PlayerControl(tempodown)</left>
<right mod="ctrl">PlayerControl(tempoup)</right>
</keyboard>
</global>
</keymap>
[font]Bro can you please just edit or create that file for me? I can't do it. [/font]
(2020-01-26, 23:27)Rockfella Wrote:(2016-09-21, 14:31)raven6679 Wrote: 8.
Create a "keyboard.xml" file inside "keymaps" folder.
Assign some keys for tempo up/down. In following example (taken from this thread) there is Ctrl+Left and Ctrl+Right mapped.
Edit its content, write as follows (or use your own keyboard shortcuts):
For specific info about keymaps, look here: http://kodi.wiki/view/keymapCode:<?xml version="1.0" encoding="UTF-8"?>
<keymap>
<global>
<keyboard>
<left mod="ctrl">PlayerControl(tempodown)</left>
<right mod="ctrl">PlayerControl(tempoup)</right>
</keyboard>
</global>
</keymap>
Bro can you please just edit or create that file for me? I can't do it.
(2020-02-14, 03:43)grobiralf Wrote: How we can play videos in slow motion with kodi 18.5 on windows?How slow do you want it to go? This system already allows 0.8x - 1.5x speed
<keymap>
<fullscreenvideo>
<keyboard>
<key id="61568">PlayerControl(tempoup)</key>
<key id="61569">PlayerControl(tempodown)</key>
</keyboard>
</fullscreenvideo>
</keymap>
<control type="image">
<left>45</left>
<top>4</top>
<width>40</width>
<height>40</height>
<texture>OSD2x.png</texture>
<visible>String.IsEqual(Player.PlaySpeed,2.00)</visible>
</control>
<control type="image">
<left>34</left>
<top>4</top>
<width>40</width>
<height>40</height>
<texture>OSD2x.png</texture>
<visible>Player.Forwarding2x</visible>
</control>