Jump to content


Photo

Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge


  • Please log in to reply
1943 replies to this topic

Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1061 percivjr

  • Senior Member
  • 45 posts

0
Neutral

Posted 1 March 2016 - 21:11

 

I also can't seem to get the script up and running.

 

 

 

Are you using bbc_pmt_starter.sh to start bbc_pmt_v6.py?

 

Do you have execute permissions on both files (chmod 755 bbc_pmt*) ?

 

Have you edited bbc_pmt_starter.sh to start the correct version of bbc_pmt_vX.py?

Here's mine (for Vu+ Duo 2):

 

#!/bin/sh

scriptPath="/usr/bin"
scriptName="bbc_pmt_v6.py -t long -d /dev/dvb/adapter0/demux3"
logName=/dev/null
#logName=/tmp/bbc_pmt.log

while [ 1 ]
do
        echo "=== starting $scriptName" >> $logName
        $scriptPath/$scriptName >> $logName 2>&1
        echo "=== $scriptName exited..." >> $logName
done

 

 

 

 

(Your adaper/demux may be different numbers).



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1062 srdiegoc

  • Member
  • 6 posts

0
Neutral

Posted 2 March 2016 - 08:06

 

 

I also can't seem to get the script up and running.

 

 

 

Are you using bbc_pmt_starter.sh to start bbc_pmt_v6.py?

 

Do you have execute permissions on both files (chmod 755 bbc_pmt*) ?

 

Have you edited bbc_pmt_starter.sh to start the correct version of bbc_pmt_vX.py?

Here's mine (for Vu+ Duo 2):

 

#!/bin/sh

scriptPath="/usr/bin"
scriptName="bbc_pmt_v6.py -t long -d /dev/dvb/adapter0/demux3"
logName=/dev/null
#logName=/tmp/bbc_pmt.log

while [ 1 ]
do
        echo "=== starting $scriptName" >> $logName
        $scriptPath/$scriptName >> $logName 2>&1
        echo "=== $scriptName exited..." >> $logName
done

 

 

 

 

(Your adaper/demux may be different numbers).

 

 

I tried using the starter script, but it wouldn't work and I did modify it and it has execute permissions, so instead I tried the normal one (bbc_pmt_v6.py) and it worked!!.But when I closed the telnet session on Putty it obviously stopped working. Is there any way of making the script start up with Openpli or starting it up just when watching a Intelsat 907 channel??

 

THank you so much again for your help! 



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1063 percivjr

  • Senior Member
  • 45 posts

0
Neutral

Posted 2 March 2016 - 15:25

"I tried using the starter script, but it wouldn't work"

 

If I remember correctly, you have to run bbc_pmt_starter.sh as a background task, i.e.

bbc_pmt_starter.sh &

 

The sequence from boot is:

 

enigma2_pre_start.sh

 

runs

 

bbc_pmt_starter.sh &

 

which runs

 

bbc_pmt_v6.py...


Edited by percivjr, 2 March 2016 - 15:26.


Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1064 srdiegoc

  • Member
  • 6 posts

0
Neutral

Posted 2 March 2016 - 17:00

 

"I tried using the starter script, but it wouldn't work"

 

If I remember correctly, you have to run bbc_pmt_starter.sh as a background task, i.e.

bbc_pmt_starter.sh &

 

The sequence from boot is:

 

enigma2_pre_start.sh

 

runs

 

bbc_pmt_starter.sh &

 

which runs

 

bbc_pmt_v6.py...

 

Ohhh!

 

The problem is that if I don't manually run bbc_pmt_starter or bbc_pmt_v6 the channels don't work, so I guess it doesn't start automatically with Openpli :(



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1065 percivjr

  • Senior Member
  • 45 posts

0
Neutral

Posted 2 March 2016 - 20:09

so I guess it doesn't start automatically with Openpli :(

 

If you have enigma2_pre_start.sh (with executable permissions) in /usr/bin it should all just work on (re-)boot.

 

 

 

 

enigma2_pre_start.sh:

 

 

#!/bin/sh

scriptPath=/usr/bin

#do cleanup
cd $scriptPath
killall -9 bbc_pmt_starter.sh
for scriptName in `ls -1 bbc_pmt*py`
do
        killall -9 $scriptName
done

export scriptPath
$scriptPath/bbc_pmt_starter.sh &

 



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1066 srdiegoc

  • Member
  • 6 posts

0
Neutral

Posted 3 March 2016 - 10:16

 

so I guess it doesn't start automatically with Openpli :(

 

If you have enigma2_pre_start.sh (with executable permissions) in /usr/bin it should all just work on (re-)boot.

 

 

 

 

enigma2_pre_start.sh:

 

 

#!/bin/sh

scriptPath=/usr/bin

#do cleanup
cd $scriptPath
killall -9 bbc_pmt_starter.sh
for scriptName in `ls -1 bbc_pmt*py`
do
        killall -9 $scriptName
done

export scriptPath
$scriptPath/bbc_pmt_starter.sh &

 

 

Yes!! That did it! I had set the .py file as executable, but not the starter one...

One last question: Is there any way of streaming the BBC channels to Kodi or VLC? It won't play when I download the streaming file from Openwebif (I wonder it's not getting the pids or the PMT or whatever it's called).

 

Thank you so much for your help!!!  :D



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1067 lacierva

  • Senior Member
  • 131 posts

0
Neutral

Posted 3 March 2016 - 20:33

dare i hope that chanel 5 will jump into the space left by bbc3 ??? now that its free to air ??



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1068 ozzsurf

  • Senior Member
  • 131 posts

+3
Neutral

Posted 3 March 2016 - 21:13

@srdiegoc

 

 

 

you can read here

http://forums.openpl...ndpost&p=423803


Edited by ozzsurf, 3 March 2016 - 21:14.


Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1069 srdiegoc

  • Member
  • 6 posts

0
Neutral

Posted 5 March 2016 - 12:33

@srdiegoc

 

 

 

you can read here

http://forums.openpl...ndpost&p=423803

 

Going to try that! Thanks :D



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1070 antrabe

  • Senior Member
  • 199 posts

0
Neutral

Posted 21 March 2016 - 21:07

with the last update i lost the audio on hd channels something change?



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1071 antrabe

  • Senior Member
  • 199 posts

0
Neutral

Posted 22 March 2016 - 00:52

ok now works something wrong or missing in my config



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1072 konieczko

  • Member
  • 1 posts

0
Neutral

Posted 26 March 2016 - 11:33

Hello my frend. I heave a problem. VU+ solo 4k and VTI

 

I am leeching scripts such as "root @ vusolo4k: ~ # / usr / bin / python -u /usr/bin/bbc_pmt_v6.py long -t -d / dev / dvb / adapter0 / demux0"

edited the labedb in init4 and including BBC One HD I answer

 

"currentSid: 0x4484
trying with demux / dev / dvb / adapter0 / demux0
pmtPid: 0x19c8
0x9F 0x80 0x32 0x23 0x03 0x44 0x84 0x09 0x00 0x13 0x01 0x81 0x08 0x0c 0xfd 0xac 0xe7 0x10 0x00 0x00 0x01 0x82 0x02 0x01 0x00 0x84 0x02 0x19 0x02 0x19 0xc8 0xC9 0x00 0x00 0x06 0x19 0x00 0x00 0xcd "

that is, unless everything is OK here?

I think I have a problem in keys softcam and oscam. I use the version of emu oscam r11213_728 and I have a file Softcam in config

here's the answer to the log oscam on BBC One HD

2016/03/26 11:24:47 56FBD5F7 c (-) - Skipped 1 duplicated log lines -
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 1 stop descrambling program number 4600 (fffe @ FFFFF: 4600 unknown)
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 1 videostream stream (MPEG-2) (type: 02 pid: 19c9 length: 0)
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 1 stream Data- / Audiostream (Subtitles / VBI and AC-3) (type: 06 pid: 19cd length: 0)
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 1 found ECMpids 0 and 2 STREAMpids in caPMT
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 1 serving srvid 4484 (fffe @ FFFFF: 4484 unknown) on the adapter camask 0000 0001 index 0000 pmtpid 19C8
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) 0 Demuxer stop descrambling program number 4600 (fffe @ FFFFF: 4600 unknown)
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 0 videostream stream (MPEG-2) (type: 02 pid: 19c9 length: 0)
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) 0 Demuxer stream Data- / Audiostream (Subtitles / VBI and AC-3) (type: 06 pid: 19cd length: 0)
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) found Demuxer 0 0 ECMpids and 2 STREAMpids in caPMT
2016/03/26 11:24:47 56FBD5F7 c (dvbapi) Demuxer 0 serving srvid 4484 (fffe @ FFFFF: 4484 unknown) on the adapter camask 0000 0001 index 0000 pmtpid 19C8

any help? :)


Edited by konieczko, 26 March 2016 - 11:34.


Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1073 lacierva

  • Senior Member
  • 131 posts

0
Neutral

Posted 29 April 2016 - 10:47

dare i hope that chanel 5 will jump into the space left by bbc3 ??? now that its free to air ??

 

channel_5_uk.png

 

Channel 5 © LyngSat, last updated 2016-04-27 - http://www.lyngsat.c.../Channel-5.html   Position Satellite Beam
EIRP (dBW)
Frequency System SR
FEC
Encryption Packages Lang. Source   28.2°E Astra 2G UK 10964 H DVB-S
MPEG-2 22000
5/6     E R Eckendorff
151214   28.2°E Astra 2G UK 10964 H DVB-S
MPEG-4
HD 22000
5/6 Videoguard Sky UK E
E R Eckendorff
151221   27.5°W Intelsat 907 Spot 2 11495 V DVB-S2
QPSK
MPEG-4
HD 44100
9/10 BISS   E Anonymous
160427 Channel 5 © LyngSat, last updated 2016-04-27 - http://www.lyngsat.c.../Channel-5.html

 

looks like its now on 27w according to this, anyone clearing it yet ?
 



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1074 Robinson

  • Senior Member
  • 2,621 posts

+30
Good

Posted 29 April 2016 - 11:44

I don't think it is correct.


ET9000, OpenPLi 4.0, 13E, 19E

HD51, OpenPLi 6.2, 75E - 30W


Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1075 jpuigs

  • Senior Member
  • 1,143 posts

+32
Good

Posted 1 May 2016 - 12:02

It has already been deleted from lyngsat.


Enigma is getting old....

 

Spoiler

Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1076 maxi

  • Senior Member
  • 66 posts

0
Neutral

Posted 5 May 2016 - 15:47

It was too good to be true... :(



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1077 maxi

  • Senior Member
  • 66 posts

0
Neutral

Posted 18 May 2016 - 00:54

It has already been deleted from lyngsat.

 

It seems that has returned...



Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1078 andres66

  • Member
  • 4 posts

0
Neutral

Posted 18 May 2016 - 08:33

 

It has already been deleted from lyngsat.

 

It seems that has returned...

 

 

Mut@nt HD2400 + OSCam_emu

 

SID - 4540

PMTpid - 1900

videoPID - 1901

Attached Files


Edited by andres66, 18 May 2016 - 08:35.

Vu+ Duo 4K, AX HD51 4K, Mut@nt HD51 4K, Mut@nt HD2400

T90, 1.1m, 2x0.9m, primefocus 1.8m; DiSEqC 16x1: 85.0E, 42.0E, 36.0E, 31.5E, 28.2E, 23.5E, 19.2E, 16.0E, 13.0E, 9.0E, 7.0E, 4.8E, 0.8W, 4.0W, 5.0W, 27.5W, 30.0W, 45.0E<->27.5W


Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1079 Robinson

  • Senior Member
  • 2,621 posts

+30
Good

Posted 18 May 2016 - 08:46

andre66, what is its service reference, please?


ET9000, OpenPLi 4.0, 13E, 19E

HD51, OpenPLi 6.2, 75E - 30W


Re: Enigma2 and BBC/ITV at 27.5W Intelsat - a big challenge #1080 maxi

  • Senior Member
  • 66 posts

0
Neutral

Posted 18 May 2016 - 08:47

Hello...
Do you know whatt is the lamedb for channel 5 HD?
Thanks...




14 user(s) are reading this topic

0 members, 14 guests, 0 anonymous users