Hey ! Just wanted to say thank you for your work !
I have an M8S II 2/16. I currently use your version 7.0.3.12d on a usb stick.
My config is Philips TV (old one) 1080p and a Sony home cinema with SPDIF input.
I use Conq skin (looks a lot like osmc).
Audio passthrought works good, stock remote works fine, every video I watched was fine for me (h264 and h265).
Here the things I tweaked :
Fixed RGB colorspace for my Philips TV (Green screen problem) :
I put this fix in autostart.sh
For me, the cec Standby and On was not working with the libcec addon in kodi. So I followed a fix from another forum (thx Baloan). It send standby to the TV when screensaver launch and on to the TV when screensaver is disable (with any key of my remote).
Install Nyancat screensaver then :
And modify with the following :
[...]
import subprocess
[...]
def onInit(self):
subprocess.call('echo "standby 0" | /usr/bin/cec-client-3.0.1 -s', shell=True)
self.exit_monitor = self.ExitMonitor(self.exit)
self.handle_settings()
[...]
def exit(self):
self.abort_requested = True
self.exit_monitor = None
subprocess.call('echo "on 0" | /usr/bin/cec-client-3.0.1 -s', shell=True)
self.log('exit')
self.close()
[...]
Display More
There it is ! Might help some of you.