vdr-addon: iptv: add option to allow more than one device. for recordings.

closes #3285
This commit is contained in:
hannesb 2014-05-30 23:51:48 +02:00 committed by Stefan Saraev
parent 76082ce4d2
commit 7a26ebe9da
4 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,7 @@ if [ "$ENABLE_SOFTCAM" == "true" ] ; then
fi
VDR_ARG="$VDR_ARG -P wirbelscan -P wirbelscancontrol"
if [ "$ENABLE_IPTV" == "true" ] ; then
VDR_ARG="$VDR_ARG -P iptv"
VDR_ARG="$VDR_ARG -P 'iptv -d $IPTV_NUM_DEVICES'"
fi
if [ "$ENABLE_STREAMDEV_SERVER" == "true" ] ; then
VDR_ARG="$VDR_ARG -P streamdev-server"

View File

@ -29,4 +29,5 @@
<string id="1053">PVR plugin</string>
<string id="1056">Enable external recdmd</string>
<string id="1057">External recdmd path</string>
<string id="1058">- number of devices</string>
</strings>

View File

@ -22,6 +22,7 @@
<setting type="sep" />
<setting id="PVR_PLUGIN" type="labelenum" label="1053" values="xvdr|vnsiserver" default="vnsiserver" />
<setting id="ENABLE_IPTV" type="bool" label="1031" default="false" />
<setting id="IPTV_NUM_DEVICES" type="labelenum" label="1058" values="1|2|3|4" visible="!eq(-1,false)" default="1" />
<setting id="ENABLE_STREAMDEV_CLIENT" type="bool" label="1032" default="false" />
<setting id="ENABLE_STREAMDEV_SERVER" type="bool" label="1033" default="false" />
<setting id="ENABLE_LIVE" type="bool" label="1038" default="false" />

View File

@ -22,4 +22,5 @@
<setting id="EXTERNAL_RECCMD_PATH" value="" />
<setting id="ENABLE_CHARSET_OVERRIDE" value="false" />
<setting id="CHARSET_OVERRIDE_STR" value="" />
<setting id="IPTV_NUM_DEVICES" value="1" />
</settings>