Disable powering TV on music start
Could you change CEC configuration to allow disabling turning on tv on music playback start? If i use rPi audio out (without amplifier) I do not require turning tv on. Chorus2 is good enough to leave tv alone.
Kodi for PC IOS Football Addons IPTV M3u Sports
Kodi for PC IOS Football Addons IPTV M3u Sports
Could you change CEC configuration to allow disabling turning on tv on music playback start? If i use rPi audio out (without amplifier) I do not require turning tv on. Chorus2 is good enough to leave tv alone.
Looks like Grant Sinclair’s POCO Zero+ & POCO Zero will be available soon. According to the website you can order now, estimated delivery Q2 2017. Just add a Pi Zero.
Very tempting, ideal for Retropie.
http://www.grantsinclair.com/en/all-products.html
Hi This module is a small but a very powerfull one. It loads a github repository to your sys.path in runtime, and updates it whenever there is a new release. Hope you find it usefull. I generally use it to load latest version of youtube-dl. You can vi...
I'm not completely sure if this issue is a Kodi or an Emby issue, so if I am in the wrong subforum, please let me know.. I am using Kodi on a Windows 10 computer connected to my Okyo NR414 receiver, which is connected to my TV My media is on a Windows...
Hello. I want to make an shortcut on my homepage that will automatically restore my skin from file. rather than go settings>skin setting>backup/restore>restore>file.....I would just like to click 1 button, or at least bring me to the backup...
ESPN3 is crashing on a brand new build of Krypton on Ubuntu. Any help would be greatly appreciated. Here is the error log: Quote:09:04:50.909 T:140702508579200 ERROR: Control 55 in window 10001 has been asked to focus, but it can't 09:04:55.388 T:1407...
plugin.video.pt.docs.hd
Version 4.3a ( Updated 16.02.17 )
[ENG]
Documentaries in Portuguese language with HD Quality.
* All playlists are organized by categories
* Source from Youtube users.
* Advised the latest version of the Youtube addon v5.*.*
* Viewmodes for current skin or any custom viewmode under settings.
* Supports all current skins
* Contents are updated automatically and constantly
* Contents are divided in Themes
- Tested with Kodi 16.1 on Windows, Linux, Open/LibreELEC, OSMC, Android
- Tested with Kodi 17.0 on Windows, Linux, Open/LibreELEC, OSMC, Android
[PT]
Documentários em Língua Portuguesa ou legendados com qualidade HD.
* Playlists organizadas por Categorias.
* Toda a fonte vem do Youtube.
* Aconselhado a última versão do Youtube addon v5.*.*
* Suporta todo o tipo de skins
* Constantes updates
* Todo o conteúdo é dividido por temáticas
- Testado no Kodi 16.1 em Windows, Linux, Open/LibreELEC, OSMC, Android
- Testado no Kodi 17.0 em Windows, Linux, Open/LibreELEC, OSMC, Android
Repository Download:
https://github.com/frenchdj/frenchdj.rep...p?raw=true
Repository Link:
https://github.com/frenchdj/frenchdj.repository
All Pictures @ Imgur:
http://imgur.com/a/zq4uS
Novos Recursos [ PT.DocS.HD Favoritos - Pesquisa Youtube - Kodi Favorite atalho ]
Recursos TOP [ PT.DocS.HD Wallpapers Dinamicos ]
Hello, i am using Kodi both on a PC and on the HiMedia Q10 PRO 4K box. I enabled the option to change the frame rate of the screen to the rate of the movie (in my example a movie with 24p). I checked on the beamer and on my desktop monitor and in both...
Good morning, I've updated from 1.4 to 1.7 Kodi and initially starting Kodi I had problem when kodi startup while migrating ADDON. I did several test deleting and reinstalling KODI without results even trying Nightly version 18.XX. Than i have deleted ...
I was traing to change a skin that I'm using to display time in hours and minutes in the views. At first I used the script duration
<variable name="LabelDuration">
<value condition="System.HasAddon(script.duration)">$INFO[window.Property(Duration)]</value>
<!--<value condition="!IsEmpty(ListItem.Duration)">$INFO[ListItem.Duration,, $LOCALIZE[31102]]</value>-->
<value condition="[Container.Content(tvshows) + !Control.IsVisible(54) + !Control.IsVisible(555)] | Container.Content(episodes)">$VAR[LabelYear]</value>
</variable>
<variable name="LabelDuration">
<value condition="!IsEmpty(Window(Home).Property(SkinHelper.ListItem.Duration.Hours))">$INFO[Window(Home).Property(SkinHelper.ListItem.Duration.Hours)]h $INFO[Window(Home).Property(SkinHelper.ListItem.Duration.Minutes)]</value>
<!--<value condition="!IsEmpty(ListItem.Duration)">$INFO[ListItem.Duration,, $LOCALIZE[31102]]</value>-->
<value condition="[Container.Content(tvshows) + !Control.IsVisible(54) + !Control.IsVisible(555)] | Container.Content(episodes)">$VAR[LabelYear]</value>
</variable>
Hi Guys This Mod Will show artwork on homescreen when playing anything.. Theres 3 Files i Added code to,if you search through my files for HomeArtwork you will see what i added,just copy and paste the code to the correct files and all good to go,i add...
Microsoft Office Viewer, Document & Spreadsheets Editor, PDF Maker, Voice Recorder, Document Scanner and File Manager, all features in a single app. THE BEST DOCUMENT EDITING AND MANAGEMENT SUITE FOR IPHONE AND IPAD. TOP FEATURES: + Able to cr...
Hello to everyone. I have a problem. I have bought a Sony tv and I install kodi (krypto 17) to see free movies. The problem is that I can not find anywhere greek subtitles. Please someone give me a solution.....
Hello,
I am trying to create a background service which should start when libreelec starts and monitor the CPU temperature. If the temperature goes beyond certain limit switch the fan ON. I have almost got all the hardware ready and connected to the GPIO (pin 18).
Below is the script I manage to create so far. Please let me know if this will work or not and specifically if this is fine or not. I am planning to install it as a service addon uisng zip file.
Lately the temperature on my Rpi 3 (Libreelec 7.0.3) goes above 70 which was not the case before. I am running moderate overclock settings. Also, have been running transmission, couchpotato and sonarr along with Kodi. Also, during startup I get the yellow warning of temperature which I believe is displayed when CPU is above 80. Can anybody point me in correct direction how to find out which service or addon is causing the pi to overheat so much?
I am newbie in linux, but can follow steps if provided. Have learned couple of tricks so far
fan.py
#!/bin/python
# Author: Arpit
import os
from time import sleep
import signal
import sys
sys.path.append('/storage/.kodi/addons/virtual.rpi-tools/lib')
import RPi.GPIO as GPIO
pin = 18 # The pin ID, edit here to change it
maxTMP = 55 # The maximum temperature in Celsius after which we trigger the fan
def setup():
GPIO.setmode(GPIO.BCM)
GPIO.setup(pin, GPIO.OUT)
GPIO.setwarnings(False)
return()
def fanON():
GPIO.output(pin, True)
return()
def fanOFF():
GPIO.output(pin, False)
return()
def getTEMP():
res = os.popen(‘vcgencmd measure_temp’).readline()
temp =(res.replace(“temp=”,””).replace(“’C\n”,””))
#print(“temp is {0}”.format(temp)) #Uncomment here for testing
CPU_temp = float(temp)
if CPU_temp>maxTMP:
fanON()
else:
fanOFF()
return()
try:
setup()
while True:
getTEMP()
sleep(10) # Read the temperature every 10 sec, increase or decrease this limit if you want
except KeyboardInterrupt: # trap a CTRL+C keyboard interrupt
GPIO.cleanup() # resets all GPIO ports used by this program
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.gpio.temperaturecontrolledfan" name="Temperature Controlled Fan" version="1.0.0" provider-name="ArpitG">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
</requires>
<extension library="fan.py" point="xbmc.service" start="login"/>
<extension point="xbmc.addon.metadata">
<summary lang="en">Temperature Controlled Fan</summary>
<description lang="en">Driver script for GPIO controlled fan</description>
<disclaimer lang="en">This plugin requires hardware fan connected by GPIO.</disclaimer>
<platform>all</platform>
</extension>
</addon>
watch gallery
Hi last time I dith a fresh kodi 16.1 install on my sd card (using LibreELEC image for my RaspBerry Pi2) Add my movies and tv shows and that works great, but after adding my music collection and update the music library. When playing music most off the...