v17 remote - stop button to actually stop the video playback through PVR
#1
Hi,

running LibreELEC 8.2.5 - Kodi 17.6 on a Raspberry device fitted with a IR sensor.  I was looking to define a key to actually stop the video playback through PVR and failed so far.
I also failed to understand the logic (if any) of the Keymap files by reading through:
https://kodi.wiki/view/Keymap#Structure

- my actual /storage/.config/lircd.conf contains:
          KEY_EXIT                 0x6897
- then /storage/.config/Lircmap.xml contains:
Code:
<lircmap>
...
                <stop>Stop</stop>
...
             <stop>KEY_EXIT</stop>
        </remote>
</lircmap>
If I press the KEY_EXIT key on my remote, the playback won't stop, instead it will exit to the main menu. Pretty much the same behavior like when I press the KEY_BACK button.
I found some inspiration from another thread here in the forum (lost the link) and went on to define a /storage/.config/keymap.xml with the following content:
Code:
<?xml version="1.0" encoding="UTF-8"?>

<keymap>
    <FullscreenVideo>
        <remote>
            <stop>Stop</stop>
        </remote>
    </FullscreenVideo>
</keymap>

This last try didn't help either. I'd be thankful if some of the devs/designers could point me to a solution.
Reply


Messages In This Thread
remote - stop button to actually stop the video playback through PVR - by abga - 2020-05-22, 18:10
Logout Mark Read Team Forum Stats Members Help
remote - stop button to actually stop the video playback through PVR0