OK to every1 wat use powervu&biss, tested oscam-1.00 oscam-1.10 various combination with tvheadend and no way around duplicate biss SID still read only first SID key, latest tvheadend the only wat sends though correct VPID for constant.cw but still fails & only read SID
SO, best to use tvheadend own DES decryption FIRST, and oscam enabled as backup w/ constant.cw or SoftCam.Key for biss th@ fall thru the net
tvheadend can't decrypt w/ it's own DES when even slightest TS errors, very sensitive, that y u get blackscreen w/ working key
tvheADEND PowerVU channel dumper, relevant for LibreELEC (only use /bin/sh):
#!/bin/bash
# you must have installed jq (apt-get install jq)
############### BEGIN CONFIG ###################
tvh_data_path="/home/hts/.hts"
OSEmu="192.168.1.2:17999"
profile="PowerVU"
userpass="pvu:pvu"
############### END CONFIG ###################
wget -O /tmp/services.json http://admin:admin@localhost:9981/api/mpegts/service/grid?limit=100000
echo \#EXTM3U
entries=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c '.total' /tmp/services.json)
for service in $( seq 1 $entries)
do
if [ $(/storage/.kodi/addons/virtual.system-tools/bin/jq -c '.entries['$service'].caid' /tmp/services.json) = '"0E00:000000"' ]
then
enabled=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c '.entries['$service'].enabled' /tmp/services.json)
if [ "$enabled" = "true" ]
then
svcname=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c -r '.entries['$service'].svcname' /tmp/services.json)
uuid=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c -r '.entries['$service'].uuid' /tmp/services.json)
network=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c -r '.entries['$service'].network' /tmp/services.json)
multiplex=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c -r '.entries['$service'].multiplex' /tmp/services.json)
sid_dec=$(/storage/.kodi/addons/virtual.system-tools/bin/jq -c '.entries['$service'].sid' /tmp/services.json)
sid=$(printf '%x' $sid_dec)
desc="$network/$multiplex/$svcname"
echo \#EXTINF:-1, $desc
echo http://$userpass@$OSEmu/stream/service/$uuid\?profile=$profile\&descramble=0\&emm=1\&:0:0:$sid
fi
fi
done
Display More
change config (IP,etc)
need jq installed from addons