Hello,
I want to increase the playbackspeed of a video with my remote.
I made my own remote config toml, but there only seems to be a key for fast-foward, according to this key list here (linked from here).
So here is how my config looks like:
[[protocols]]
name = "odroid"
protocol = "nec"
variant = "nec"
[protocols.scancodes]
0xb2dc = "KEY_POWER"
0xb288 = "KEY_MUTE"
0xb282 = "KEY_HOME"
0xb2ca = "KEY_UP"
0xb299 = "KEY_LEFT"
0xb2ce = "KEY_OK"
0xb2c1 = "KEY_RIGHT"
0xb2d2 = "KEY_DOWN"
0xb2c5 = "KEY_MENU"
0xb29a = "KEY_BACK"
0xb281 = "KEY_SLOW"
0xb280 = "KEY_FASTFORWARD"
But how would I go about and add the new key to that increases/decreases the playback speed?
Best Regards.