mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +00:00
tvheadend: remove addon for 4.0
This commit is contained in:
parent
4b3dfa4c5a
commit
0a2f215193
@ -1,17 +0,0 @@
|
|||||||
8.0.102
|
|
||||||
- update tvheadend to 4.0.9-12
|
|
||||||
- fixes picons download from Tvh server
|
|
||||||
|
|
||||||
8.0.101
|
|
||||||
- update tvheadend to 4.0.9-5
|
|
||||||
|
|
||||||
8.0.100
|
|
||||||
- update for LibreELEC 8.0
|
|
||||||
|
|
||||||
7.0.101
|
|
||||||
- update tvheadend to 4.0.9-4
|
|
||||||
- startup logic fix
|
|
||||||
- added proper icon and description
|
|
||||||
|
|
||||||
7.0.100
|
|
||||||
- initial LibreELEC version
|
|
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
@ -1,79 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# OpenELEC is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# OpenELEC is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
PKG_NAME="tvheadend"
|
|
||||||
PKG_VERSION="e5400e2"
|
|
||||||
PKG_VERSION_NUMBER="4.0.9"
|
|
||||||
PKG_REV="102"
|
|
||||||
PKG_ARCH="any"
|
|
||||||
PKG_LICENSE="GPL"
|
|
||||||
PKG_SITE="http://www.tvheadend.org"
|
|
||||||
PKG_URL="https://github.com/tvheadend/tvheadend/archive/$PKG_VERSION.tar.gz"
|
|
||||||
PKG_DEPENDS_TARGET="toolchain curl libdvbcsa libiconv libressl Python:host"
|
|
||||||
PKG_SECTION="service.multimedia"
|
|
||||||
PKG_SHORTDESC="Tvheadend: a TV streaming server for Linux"
|
|
||||||
PKG_LONGDESC="Tvheadend ($PKG_VERSION_NUMBER): is a TV streaming server for Linux supporting DVB-S/S2, DVB-C, DVB-T/T2, IPTV, SAT>IP and ATSC"
|
|
||||||
PKG_AUTORECONF="no"
|
|
||||||
|
|
||||||
PKG_IS_ADDON="yes"
|
|
||||||
PKG_ADDON_NAME="Tvheadend 4.0"
|
|
||||||
PKG_ADDON_TYPE="xbmc.service"
|
|
||||||
|
|
||||||
PKG_CONFIGURE_OPTS_TARGET="--prefix=/usr \
|
|
||||||
--arch=$TARGET_ARCH \
|
|
||||||
--cpu=$TARGET_CPU \
|
|
||||||
--cc=$CC \
|
|
||||||
--enable-hdhomerun_client \
|
|
||||||
--enable-hdhomerun_static \
|
|
||||||
--disable-avahi \
|
|
||||||
--disable-libav \
|
|
||||||
--enable-inotify \
|
|
||||||
--enable-epoll \
|
|
||||||
--disable-uriparser \
|
|
||||||
--enable-tvhcsa \
|
|
||||||
--enable-bundle \
|
|
||||||
--enable-dvbcsa \
|
|
||||||
--disable-dbus_1 \
|
|
||||||
--python=$TOOLCHAIN/bin/python"
|
|
||||||
|
|
||||||
post_unpack() {
|
|
||||||
sed -e 's/VER="0.0.0~unknown"/VER="'$PKG_VERSION_NUMBER' ~ LibreELEC Tvh-addon v'$PKG_ADDON_REPOVERSION'.'$PKG_REV'"/g' -i $PKG_BUILD/support/version
|
|
||||||
}
|
|
||||||
|
|
||||||
pre_configure_target() {
|
|
||||||
# fails to build in subdirs
|
|
||||||
cd $PKG_BUILD
|
|
||||||
rm -rf .$TARGET_NAME
|
|
||||||
|
|
||||||
export CROSS_COMPILE=$TARGET_PREFIX
|
|
||||||
export CFLAGS="$CFLAGS -I$SYSROOT_PREFIX/usr/include/iconv -L$SYSROOT_PREFIX/usr/lib/iconv"
|
|
||||||
}
|
|
||||||
|
|
||||||
post_make_target() {
|
|
||||||
$CC -O -fbuiltin -fomit-frame-pointer -fPIC -shared -o capmt_ca.so src/extra/capmt_ca.c -ldl
|
|
||||||
}
|
|
||||||
|
|
||||||
makeinstall_target() {
|
|
||||||
: # nothing to do here
|
|
||||||
}
|
|
||||||
|
|
||||||
addon() {
|
|
||||||
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/bin
|
|
||||||
cp -P $PKG_BUILD/build.linux/tvheadend $ADDON_BUILD/$PKG_ADDON_ID/bin
|
|
||||||
cp -P $PKG_BUILD/capmt_ca.so $ADDON_BUILD/$PKG_ADDON_ID/bin
|
|
||||||
}
|
|
@ -1,69 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# OpenELEC is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# OpenELEC is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
if [ $# -lt 1 ]
|
|
||||||
then
|
|
||||||
. /etc/profile
|
|
||||||
|
|
||||||
ADDON_HOME="$HOME/.kodi/userdata/addon_data/service.multimedia.tvheadend"
|
|
||||||
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"`
|
|
||||||
|
|
||||||
if [ "$XMLTV_TYPE" = "FILE" ]; then
|
|
||||||
cat "$XMLTV_LOCATION_FILE"
|
|
||||||
exit 0
|
|
||||||
elif [ "$XMLTV_TYPE" = "SCRIPT" ]; then
|
|
||||||
if [ -e "$XMLTV_LOCATION_SCRIPT" ] ; then
|
|
||||||
exec "$XMLTV_LOCATION_SCRIPT"
|
|
||||||
fi
|
|
||||||
elif [ "$XMLTV_TYPE" = "WEB" ]; then
|
|
||||||
wget -qO - "$XMLTV_LOCATION_WEB"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
dflag=
|
|
||||||
vflag=
|
|
||||||
cflag=
|
|
||||||
|
|
||||||
for a in "$@"
|
|
||||||
do
|
|
||||||
[ "$a" = "-d" -o "$a" = "--description" ] && dflag=1
|
|
||||||
[ "$a" = "-v" -o "$a" = "--version" ] && vflag=1
|
|
||||||
[ "$a" = "-c" -o "$a" = "--capabilities" ] && cflag=1
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ -n "$dflag" ]
|
|
||||||
then
|
|
||||||
echo "tv_grab_file is a simple grabber that can be configured through the addon settings from Kodi"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$vflag" ]
|
|
||||||
then
|
|
||||||
echo "1.0"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$cflag" ]
|
|
||||||
then
|
|
||||||
echo "baseline"
|
|
||||||
fi
|
|
@ -1,93 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# OpenELEC is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# OpenELEC is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
. /etc/profile
|
|
||||||
|
|
||||||
oe_setup_addon service.multimedia.tvheadend
|
|
||||||
|
|
||||||
ADDON_SETTINGS="$ADDON_HOME/settings.xml"
|
|
||||||
XMLTV_FILE="$ADDON_DIR/bin/tv_grab_file"
|
|
||||||
XMLTV_SETTINGS_DIR="$ADDON_HOME/xmltv"
|
|
||||||
XMLTV_SETTINGS_FILE="$XMLTV_SETTINGS_DIR/config"
|
|
||||||
DVR_SETTINGS_DIR="$ADDON_HOME/dvr"
|
|
||||||
DVR_SETTINGS_FILE="$DVR_SETTINGS_DIR/config"
|
|
||||||
DVR_DIR="$HOME/recordings"
|
|
||||||
TIMESHIFT_SETTINGS_DIR="$ADDON_HOME/timeshift"
|
|
||||||
TIMESHIFT_SETTINGS_FILE="$TIMESHIFT_SETTINGS_DIR/config"
|
|
||||||
TIMESHIFT_DIR="$ADDON_HOME/cache/timeshift"
|
|
||||||
|
|
||||||
chmod a+x $ADDON_DIR/bin/*
|
|
||||||
|
|
||||||
if [ "$WORKAROUND_SLEEP" == "true" ] ; then
|
|
||||||
sleep $WORKAROUND_SLEEP_TIME
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f "$XMLTV_SETTINGS_FILE" ]; then
|
|
||||||
mkdir -p $XMLTV_SETTINGS_DIR
|
|
||||||
if [ -f $ADDON_DIR/xmltv-config ]; then
|
|
||||||
cp $ADDON_DIR/xmltv-config $XMLTV_SETTINGS_FILE
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f "$DVR_SETTINGS_FILE" ]; then
|
|
||||||
mkdir -p $DVR_DIR
|
|
||||||
mkdir -p $DVR_SETTINGS_DIR
|
|
||||||
if [ -f $ADDON_DIR/dvr-config ]; then
|
|
||||||
cp $ADDON_DIR/dvr-config $DVR_SETTINGS_FILE
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f "$TIMESHIFT_SETTINGS_FILE" ]; then
|
|
||||||
mkdir -p $TIMESHIFT_DIR
|
|
||||||
mkdir -p $TIMESHIFT_SETTINGS_DIR
|
|
||||||
if [ -f $ADDON_DIR/timeshift-config ]; then
|
|
||||||
cp $ADDON_DIR/timeshift-config $TIMESHIFT_SETTINGS_FILE
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$DEBUG" = "yes" ]; then
|
|
||||||
TVHEADEND_ARG="-B -C -s -u root -g video -c $ADDON_HOME"
|
|
||||||
else
|
|
||||||
TVHEADEND_ARG="-B -C -u root -g video -c $ADDON_HOME"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# start userspace DVB driver/addon
|
|
||||||
for driver_dvb in $(find /storage/.kodi/addons/driver.dvb.*/bin/userspace-driver.sh -type f 2>/dev/null); do
|
|
||||||
driver_dvb_name=$(echo $driver_dvb | awk 'BEGIN {FS="/"} {printf("%s", $5)}')
|
|
||||||
logger -t Tvheadend "### Loading userspace DVB driver: $driver_dvb_name ###"
|
|
||||||
# use ". " because of variable export
|
|
||||||
. $driver_dvb
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "$WAIT_FOR_FEINIT" == "true" ] ; then
|
|
||||||
while [ true ] ; do
|
|
||||||
if [ -e /dev/dvb/adapter$((NUM_ADAPTERS-1))/frontend0 ] ; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$PRELOAD_CAPMT_CA" == "true" ] ; then
|
|
||||||
logger -t Tvheadend "### Preloading capmt_ca.so library ###"
|
|
||||||
LD_PRELOAD="$ADDON_DIR/bin/capmt_ca.so $LD_PRELOAD" exec $ADDON_DIR/bin/tvheadend $TVHEADEND_ARG &>$ADDON_LOG_FILE
|
|
||||||
else
|
|
||||||
exec $ADDON_DIR/bin/tvheadend $TVHEADEND_ARG &>$ADDON_LOG_FILE
|
|
||||||
fi
|
|
@ -1,17 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# OpenELEC is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# OpenELEC is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
################################################################################
|
|
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"storage": "/storage/recordings",
|
|
||||||
"retention-days": 31,
|
|
||||||
"pre-extra-time": 0,
|
|
||||||
"post-extra-time": 0,
|
|
||||||
"day-dir": 0,
|
|
||||||
"channel-dir": 0,
|
|
||||||
"channel-in-title": 0,
|
|
||||||
"date-in-title": 0,
|
|
||||||
"time-in-title": 0,
|
|
||||||
"whitespace-in-title": 0,
|
|
||||||
"title-dir": 0,
|
|
||||||
"episode-in-title": 0,
|
|
||||||
"tag-files": 1
|
|
||||||
}
|
|
@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<strings>
|
|
||||||
|
|
||||||
<!-- HTS TVHEADEND -->
|
|
||||||
<string id="1000">XMLTV</string>
|
|
||||||
<string id="1001">DVB</string>
|
|
||||||
<string id="1011">XMLTV configuration</string>
|
|
||||||
<string id="1011">XMLTV source type</string>
|
|
||||||
<string id="1012">XMLTV File location</string>
|
|
||||||
<string id="1013">XMLTV Web location</string>
|
|
||||||
<string id="1014">XMLTV Script location</string>
|
|
||||||
<string id="1020">DVB Configuration</string>
|
|
||||||
<string id="1021">Unload DVB mudules before suspend</string>
|
|
||||||
<string id="1022">Wait for frontend initialization</string>
|
|
||||||
<string id="1023">Number of adapters to wait for</string>
|
|
||||||
<string id="1024">Preload capmt_ca.so library</string>
|
|
||||||
<string id="1025">Delay the start of Tvheadend</string>
|
|
||||||
<string id="1026">time (s)</string>
|
|
||||||
|
|
||||||
</strings>
|
|
@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<settings>
|
|
||||||
|
|
||||||
<!-- HTS TVHEADEND -->
|
|
||||||
<category label="1000">
|
|
||||||
<setting label="1010" type="lsep"/>
|
|
||||||
<setting type="sep" />
|
|
||||||
<setting id="XMLTV_TYPE" type="labelenum" label="1011" values="NONE|FILE|SCRIPT|WEB" sort="yes" default="NONE"/>
|
|
||||||
<setting id="XMLTV_LOCATION_FILE" type="file" label="1012" default="" enable="eq(-1,0)"/>
|
|
||||||
<setting id="XMLTV_LOCATION_WEB" type="text" label="1013" default="http://" enable="eq(-2,3)"/>
|
|
||||||
<setting id="XMLTV_LOCATION_SCRIPT" type="file" label="1014" default="" enable="eq(-3,2)"/>
|
|
||||||
</category>
|
|
||||||
<category label="1001">
|
|
||||||
<setting label="1020" type="lsep"/>
|
|
||||||
<setting type="sep" />
|
|
||||||
<setting id="WAIT_FOR_FEINIT" type="bool" label="1022" default="false" />
|
|
||||||
<setting id="NUM_ADAPTERS" type="slider" range="1,16" option="int" label="1023" default="1" enable="eq(-1,true)" />
|
|
||||||
<setting id="REMOVE_MODULES" type="text" label="1021" values="" default=""/>
|
|
||||||
<setting id="PRELOAD_CAPMT_CA" type="bool" label="1024" default="false" />
|
|
||||||
<setting id="WORKAROUND_SLEEP" type="bool" label="1025" default="false" />
|
|
||||||
<setting id="WORKAROUND_SLEEP_TIME" type="slider" range="1,30" option="int" label="1026" default="1" enable="eq(-1,true)" />
|
|
||||||
</category>
|
|
||||||
</settings>
|
|
@ -1,10 +0,0 @@
|
|||||||
<settings>
|
|
||||||
<setting id="WAIT_FOR_FEINIT" value="false" />
|
|
||||||
<setting id="NUM_ADAPTERS" value="1" />
|
|
||||||
<setting id="XMLTV_LOCATION_FILE" value="" />
|
|
||||||
<setting id="XMLTV_LOCATION_WEB" value="http://" />
|
|
||||||
<setting id="XMLTV_TYPE" value="NONE" />
|
|
||||||
<setting id="PRELOAD_CAPMT_CA" value="false" />
|
|
||||||
<setting id="WORKAROUND_SLEEP" value="false" />
|
|
||||||
<setting id="WORKAROUND_SLEEP_TIME" value="1" />
|
|
||||||
</settings>
|
|
@ -1,44 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# OpenELEC is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# OpenELEC is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
. /etc/profile
|
|
||||||
|
|
||||||
oe_setup_addon service.multimedia.tvheadend
|
|
||||||
|
|
||||||
SERVICE="service.multimedia.tvheadend"
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
pre)
|
|
||||||
if systemctl is-active "$SERVICE" &>/dev/null ; then
|
|
||||||
systemctl stop "$SERVICE"
|
|
||||||
for module in $REMOVE_MODULES ; do
|
|
||||||
rmmod $module
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
post)
|
|
||||||
if systemctl is-enabled "$SERVICE" &>/dev/null ; then
|
|
||||||
for module in $REMOVE_MODULES ; do
|
|
||||||
modprobe $module
|
|
||||||
done
|
|
||||||
systemctl start "$SERVICE"
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
@ -1,14 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=TVHeadend Service
|
|
||||||
After=network-online.service
|
|
||||||
Requires=network-online.service
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
ExecStart=/bin/sh -c "exec sh /storage/.kodi/addons/service.multimedia.tvheadend/bin/tvheadend.start"
|
|
||||||
TimeoutStopSec=2
|
|
||||||
Restart=always
|
|
||||||
RestartSec=2
|
|
||||||
StartLimitInterval=0
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=kodi.target
|
|
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"enabled": 0,
|
|
||||||
"ondemand": 0,
|
|
||||||
"path": "/storage/.kodi/userdata/addon_data/service.multimedia.tvheadend/cache/timeshift",
|
|
||||||
"unlimited_period": 0,
|
|
||||||
"max_period": 3600,
|
|
||||||
"unlimited_size": 0,
|
|
||||||
"max_size": 1024
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"grabbers": [
|
|
||||||
{
|
|
||||||
"path": "/storage/.kodi/addons/service.multimedia.tvheadend/bin/tv_grab_file",
|
|
||||||
"description": "tv_grag_file is a simple grabber that just read the ~/.xmltv/tv_grab_file.xmltv file",
|
|
||||||
"version": "0.1\n",
|
|
||||||
"mtime": 1318774706,
|
|
||||||
"capabilities": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"grab-interval": 12,
|
|
||||||
"grab-enabled": 1,
|
|
||||||
"current-grabber": "/storage/.kodi/addons/service.multimedia.tvheadend/bin/tv_grab_file"
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user