Spanish Abertis DTT Sat @ Hispasat 30W - Chat & How to guides

Paco22

Registered
Messages
2
Tengo octagon sx 88 combo pero no consigo abrir los canales TPA 30W 11502 V 10200 he puesto los biss y el 801 pero nada alguna solución?
 

j.puig

Donating Member
Messages
48
Octagon SF8008 , SatdreamGR, enigma2 hangs when watching these channels . I have to reboot box.
Does anybody know why ?
 

maxilive

Registered
Messages
146
Octagon SF8008 , SatdreamGR, enigma2 hangs when watching these channels . I have to reboot box.
Does anybody know why ?

Have you replace the file etc/sysctl or add...


## added for Abertis ###
net.core.rmem_default = 16777216
net.core.rmem_max = 16777216
net.core.wmem_default = 16777216
net.core.wmem_max = 16777216
net.ipv4.udp_mem = 8388608 12582912 16777216
net.ipv4.tcp_rmem = 4096 87380 8388608
net.ipv4.tcp_wmem = 4096 65536 8388608
net.ipv4.tcp_tw_recycle = 0
 

j.puig

Donating Member
Messages
48
my sysctl.conf file has:

vm.dirty_writeback_centisecs = 300
vm.dirty_background_ratio = 1
vm.dirty_ratio = 60
net.core.rmem_default = 16777216
net.core.rmem_max = 16777216
net.core.wmem_default = 16777216
net.core.wmem_max = 16777216
net.ipv4.udp_mem = 8388608 12582912 16777216
net.ipv4.tcp_rmem = 4096 87380 8388608
net.ipv4.tcp_wmem = 4096 65536 8388608
net.ipv4.tcp_tw_recycle = 0
 

marco1

Registered
Messages
39
Hello dear friends, a very good evening.
Is there any possibility to know the parameters to put on the Octagon SX 88 4K to watch the RTVE 4K channels?
I put the known biss key and 1802 to ID (as all others) but no success.
Thanks in advance for your help!
 

granavi

Registered
Messages
9
This does work in TVHeadend on my Ubuntu server with a combination of the Abertis script and then Astra-SM. Playback is smooth. I think some Enigma2 receivers may struggle with this due to the amount of data being bounced round the internal network interface to do this 'double' decode via astra-sm, hopefully at least some will be able to work though!

2022-11-21.png


I second what @dvlajkovic has said regarding the key.
Hi Adam
Can you explain how you get these channels with tvheadend?
I've been trying for a long time with no results.
I have tried editing the muxes (like bbc chains of 27.5w) put all the data but it doesn't work.
I have debian server with TBS6902 et tvheadend 4.3-1994 compiled with --disable-zlib --disable-ffmpeg_static

Thank
 

Oskar3

Registered
Messages
91
Hi Adam
Can you explain how you get these channels with tvheadend?
I've been trying for a long time with no results.
I have tried editing the muxes (like bbc chains of 27.5w) put all the data but it doesn't work.
I have debian server with TBS6902 et tvheadend 4.3-1994 compiled with --disable-zlib --disable-ffmpeg_static

Thank
How did you install astra-sm on debian?
Thank
 

Oskar3

Registered
Messages
91
No, I don't have astra-sm installed on debian, I think what is needed is the aberti script ,but I did not find for X86
I tried just editing the tvheadend muxes adding Vpid ,AUDpid ,PMT...
I don't understand how it can work on those small devices and be so complicated with a linux pc. :unsure:
 

Adam792

Registered
Messages
101
Astra-SM is installable on Linux with no problem, you have to download and build it yourself, it doesn't take very long though.

As for TVHeadend, it's a bit more involved because TVHeadend doesn't let services have generic 'data' PIDs like Enigma2 does now (with the c:15xxxx option). I can write a guide but it will take a little bit of time.

For Abertis, I use a small C program, but there's also a little Python3 script that works as part of a pipe -

Python:
import sys

pid = int(sys.argv[1])

packet = sys.stdin.buffer.read(188)

while packet !="":
    tspid = ((packet[1] & 0x1f) << 8) | packet[2]
    if tspid == pid :
        afc = packet[3] & 0x30
        
        if afc == 0x10 :
            sys.stdout.flush()
            sys.stdout.buffer.write(packet[4:])
        elif afc == 0x30 :
            sys.stdout.flush()
            sys.stdout.buffer.write(packet[packet[4]+5:])
            
    packet = sys.stdin.buffer.read(188)

Save as abertis.py

I can go through how that then works with TVHeadend, but it will take a little more time to write :)
 
Top