Could someone tell me why GDPR-2 closed the thread after pushing 8.90.6?
Posts by rosenrot
-
-
Gave the devel a test on my KI pro. Playing 4K CPU ~100% stuttering playback and almost none responsive to remote or ssh. TVHeadEnd reports no Adapters.:)
ps. 8.90.4 works perfect;)
2re Did you find a solution for the no adapters?
-
I just flashed the latest devel with the new DTB. My K1 Plus boots but internal dvb is not detected.
Restarting the box seems to kill video output but the box does not reboot.
Is there a chance to make the internal dvb work with the latest devel?
-
GDPR-2 do I need a new DTB for your latest devel build? I downloaded the DTB within the last 7 days but now they are gone.
-
To find out what HDMI connected display - Gamma and bit depth capabilities are registered with LE for use:
cat /sys/class/amhdmitx/amhdmitx0/dc_cap
Forced RGB output is not needed unless you are getting Pink or Green screen on old Sony/Philips TV's.
This command gives me all options available within the last build.
S905 doesn't support 10 bit output. You can decode 10bit H.265 but they will be scaled to 8bit output.
Thanks, so choosing 444,10bit will not change anything at all.
-
The Coolest thanks
If someone knows better, I would be thankful. Choosing 444,10bit works for me but I can not tell if it really does 10bit. Is there a way to check? TV does not tell anything.
-
There is no 'best settings', these settings are used when you have compatibility issues with your TV (RGB) and the 10 bit options are good for 4K HDR TVs.
Thanks, I see, so can the S905 do 10bit at all?
-
New S905 test release LibreELEC-S905.arm-9.0-devel-20180223155029-r28201-gea3b1a985.tar
4 new options in Settings>System>Display specific to Amlogic
If your TV appears green after flashing the image then set your colour space with the new options and reboot until you find one that works.Could someone tell me what is supported by the S905?
Force RGB output?
444,10bit?
422,10bit?
rgb,10bit?
I tried to get these information from other threads but I can't and my TV does not tell me what it gets.
What are the best settings for the S905?
-
I know there is a lot of discussion going on right now but I'm still wondering what the problem of TvH4.4 is. It was mentioned several times that the server does not respond.
Could someone tell me what the problem is? If I'm ignored because I do not provide a log file, please tell.
-
8.90.4, TvH 4.4 not responding via ip:9981. Deleted addon files since it tried to import settings from 42, but still not reachable.
Ideas?
-
GDPR-2 is it true that you devel builds don't update via autoupdate? Is there a reason?
From what I saw, you or afl1 are providing them to test new implementations for users in the forum. Wouldn't it be nice if these devel builds autoupdate to the main builds? This way, people drifting away from the main line would be brought back with the next main build automatically.
I'm not speaking about a devel build auto-update function yet.
-
How much time did You spend in testing ?
It´s a dream to have perfect & cheap "all in one"
Compared to the time that it would take to teach my girlfriend how to use 3 different devices, little I would say
Also, for example these freezes are minor issues which just catch my attention if I feel bored or liveTV is that bad that I recognize them.
And I want to add that it is my fault because if I would stick to kodi 17 and Tvh4.2 there would be no freezes. However, I like to surf on the wave, therefore helping the community with bug finding/fixing is an honor to mee.
-
Tvh 4.4 will just be the same as the current version however Tvh 4.2 will also be available so people should be able to switch builds easier without Tvh and all their settings messing up.
Sounds good because I'm experiencing some freezes with Tvh4.3 but I would like to verify with 4.2 and 4.4 before posting debug logs.
-
I´m old school - don´t want want "all in one"
If I want to watch SAT I will use my DREAM box SAT - no need to configure live TV using tvheadend etc. every day
May be some users want to configure a lot of addons every day again and again, just for fun ....
Seems you are really old school. Memory is not expensive anymore so you can save your configuration. Therefore, configuring it once is enough these days
However, I would also be interested in 8.90.4 cause of the tvheadend 4.4. Maybe configuring is less time consuming with the new version and it is even worth trying for Tim_Taylor
-
So you thought buying a device with no source code is available was a better idea?
If afl1 had not made the dvb_tv-aml driver then the K series would not be supported right now.Isn't the KVIM DVB-S2 board the same as for the KI Plus? Did they provide a driver?
-
Maybe you need to use another dtb.
There was already a fix for this merged with LE recently, I just need to update the addon on the server.
-edit
Addon has been updated, you will need to refresh your addons for it to download
Thanks.
-
Code
2018-01-19 09:41:15.015 xmltv: /storage/.kodi/addons/service.tvheadend42/bin/tv_grab_file: grab /storage/.kodi/addons/service.tvheadend42/bin/tv_grab_file 2018-01-19 09:41:15.023 spawn: Executing "/storage/.kodi/addons/service.tvheadend42/bin/tv_grab_file" 2018-01-19 09:41:15.265 xmltv: /storage/.kodi/addons/service.tvheadend42/bin/tv_grab_file: no output detected 2018-01-19 09:41:15.265 xmltv: /storage/.kodi/addons/service.tvheadend42/bin/tv_grab_file: grab returned no data
Seems that tv_grab_file can't parse the settings.xml file. Can someone confirm?
I would suggest to change from:
CodeADDON_HOME="$HOME/.kodi/userdata/addon_data/service.tvheadend42" ADDON_SETTINGS="$ADDON_HOME/settings.xml" XMLTV_TYPE=`grep XMLTV_TYPE $ADDON_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"` XMLTV_LOCATION_FILE=`grep XMLTV_LOCATION_FILE $ADDON_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"` XMLTV_LOCATION_WEB=`grep XMLTV_LOCATION_WEB $ADDON_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"` XMLTV_LOCATION_SCRIPT=`grep XMLTV_LOCATION_SCRIPT $ADDON_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
TO
CodeADDON_HOME="$HOME/.kodi/userdata/addon_data/service.tvheadend42" ADDON_SETTINGS="$ADDON_HOME/settings.xml" XMLTV_TYPE=`xml sel -t -v '//settings/setting[@id="XMLTV_TYPE"]' -nl $ADDON_SETTINGS` XMLTV_LOCATION_FILE=`xml sel -t -v '//settings/setting[@id="XMLTV_LOCATION_FILE"]' -nl $ADDON_SETTINGS` XMLTV_LOCATION_WEB=`xml sel -t -v '//settings/setting[@id="XMLTV_LOCATION_WEB"]' -nl $ADDON_SETTINGS` XMLTV_LOCATION_SCRIPT=`xml sel -t -v '//settings/setting[@id="XMLTV_LOCATION_SCRIPT"]' -nl $ADDON_SETTINGS`
-
i test what you suggest... but nothing,,unfurtuntely, i made another sd to test with the same version of librelec and this boots,may be there is something corrupt in the second partition and the system can't boot?' and is possible to enter secon partion from pc??
thanks
I can not imagine how it could happen but try also to replace the dtb.img in case something is wrong there. It is strange that there is a dtb.img.dtb file. Except if you copied it there or the auto updater did it.
In linux you should be able to see all partitions from what I can remember. Maybe there is a tool for windows as well.