Thanks for the hint, that worked. (Got channels from here yaVDR Channelpedia: Overview)
No I can compare tvheadend and vdr on my system.
Thanks for the hint, that worked. (Got channels from here yaVDR Channelpedia: Overview)
No I can compare tvheadend and vdr on my system.
Hi,
I'm struggeling with VDR on LibreELEC 8.2.5: the VDR Config Plugins does not find any channels.
My setup is x86 64-bit with a Conexant CX23885 PCI-E DVB-S2 dual tuner. The tuner is working with tvheadend (my working installation on ssd).
But on a fresh 8.2.5 installation (usb drive, just for testing, otherwise same hardware) I installed all three VDR addons, started VDR configuration, set tuner to DVB-S/S2, satelite to 19.2 Astra and started scanning. I takes about 2-3 minutes, scan is over but 0 channels found.
I am not quite sure where or what to look for and hope for some help. Any hints?
# dmesg|grep cx23885
[ 4.286300] cx23885: cx23885 driver version 0.0.4 loaded
[ 4.286404] cx23885: CORE cx23885[0]: subsystem: 6981:8888, board: TurboSight TBS 6981 [card=40,autodetected]
[ 6.506731] cx25840 11-0044: cx23885 A/V decoder found @ 0x88 (cx23885[0])
[ 7.146641] cx25840 11-0044: loaded v4l-cx23885-avcore-01.fw firmware (16382 bytes)
[ 7.162432] cx23885: cx23885_dvb_register() allocating 1 frontend(s)
[ 7.162434] cx23885: cx23885[0]: cx23885 based dvb card
[ 7.165223] dvbdev: DVB: registering new adapter (cx23885[0])
[ 7.165234] cx23885 0000:02:00.0: DVB: registering adapter 0 frontend 0 (Conexant CX24117/CX24132)...
[ 7.165614] cx23885: cx23885_dvb_register() allocating 1 frontend(s)
[ 7.165615] cx23885: cx23885[0]: cx23885 based dvb card
[ 7.165622] dvbdev: DVB: registering new adapter (cx23885[0])
[ 7.165624] cx23885 0000:02:00.0: DVB: registering adapter 1 frontend 0 (Conexant CX24117/CX24132)...
[ 7.165903] cx23885: cx23885_dev_checkrevision() Hardware revision = 0xa5
[ 7.165908] cx23885: cx23885[0]/0: found at 0000:02:00.0, rev: 4, irq: 16, latency: 0, mmio: 0xf7a00000
[ 18.403712] cx23885 0000:02:00.0: DVB: adapter 1 frontend 0 frequency 0 out of range (950000..2150000)
[ 18.470407] cx23885 0000:02:00.0: DVB: adapter 0 frontend 0 frequency 0 out of range (950000..2150000)
# lspci | grep Cone
02:00.0 Multimedia video controller: Conexant Systems, Inc. CX23885 PCI Video and Audio Decoder (rev 04)
Display More
Kodi Debug log: http://ix.io/1d1z
Thanks for changing the link. But what about the script? Should I ask in another part of the forum?
Hi there,
the "Prevent Idle Shutdown" script did not work for me on Libreelec 8.2.4 (Generic), so after short investigation I found that kodi with default skin estuary does not support action allowidleshutdown (ERROR: Keymapping error: no such action 'allowidleshutdown' defined).
I changed line 17 like that and no it works:
#/bin/sh
IDLE_SHUTDOWN_ALLOWED_LAST_STATE=-1
while true
do
KODI_RUNNING=`ps -A | grep kodi.bin | grep -v grep | wc -l`
if [ 1 == $KODI_RUNNING ] ; then
SSH_ACTIVE=`netstat -tnpa | grep 'tcp.*:22.*ESTABLISHED.*' | wc -l`
NFS_ACTIVE=`netstat -tnpa | grep 'tcp.*:111.*ESTABLISHED.*' | wc -l`
SMB_ACTIVE=`netstat -tnpa | grep 'tcp.*:445.*ESTABLISHED.*' | wc -l`
[ $SSH_ACTIVE -gt 0 -o $NFS_ACTIVE -gt 0 -o $SMB_ACTIVE -gt 0 ] && IDLE_SHUTDOWN_ALLOWED=1 || IDLE_SHUTDOWN_ALLOWED=0
if [ $IDLE_SHUTDOWN_ALLOWED_LAST_STATE != $IDLE_SHUTDOWN_ALLOWED ] ; then
IDLE_SHUTDOWN_ALLOWED_LAST_STATE=$IDLE_SHUTDOWN_ALLOWED
kodi-send --action="InhibitIdleShutdown(false)"
if [ 0 == $IDLE_SHUTDOWN_ALLOWED ] ; then
kodi-send --action="InhibitIdleShutdown(false)"
else
kodi-send --action="InhibitIdleShutdown(true)"
fi
fi
fi
sleep 60
done
Display More
Can you change this on the wiki page Useful shell scripts [LibreELEC.wiki]? Also a link to "autostart.sh" is not working.