Octagon SF8008 , SatdreamGR, enigma2 hangs when watching these channels . I have to reboot box.
Does anybody know why ?
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
Done.
Same results, hangs after 5 or 6 seconds watching.....![]()
must write on octagon forumHello 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!
Thanks EnoSat, I'll do it right now!must write on octagon forum
Hi AdamThis 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!
![]()
I second what @dvlajkovic has said regarding the key.
How did you install astra-sm on debian?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
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 X86How did you install astra-sm on debian?
Thank
I don't understand how it can work on those small devices and be so complicated with a linux pc.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...
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)
I can see the pids linking sat ip with STB but no hat services. Compiling astra-sm shouldn't take long but so far I haven't been able to do it for a long time....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![]()
thanks very much , take your timeAstra-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![]()