Jump to content


Photo

Service references?


  • Please log in to reply
6 replies to this topic

#1 Chris1991

  • Member
  • 11 posts

0
Neutral

Posted 27 January 2020 - 07:40

Hello. I was wondering if anyone knows how to make a reference?

This is what I am talking about "1:0:19:1CE9:7F6:2:11A0000:0:0:0:"

I understand the information needed to manually create these is on sites like kos.

I cant figure out how to build them.

Does anyone know?

 

Thanks,

Chris



Re: Service references? #2 kalehrl

  • Senior Member
  • 468 posts

+8
Neutral

Posted 27 January 2020 - 08:08

What do you need this for?

When you scan channels, they are automatically generated.

For IPTV channels, there is a python script/plugin for that.


Edited by kalehrl, 27 January 2020 - 08:08.


Re: Service references? #3 Chris1991

  • Member
  • 11 posts

0
Neutral

Posted 27 January 2020 - 08:58

Thanks for the reply.

I want to make my own script that makes channel lists.



Re: Service references? #4 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 27 January 2020 - 09:58

  • 1: The player used. 1 = hardware, 4097 = software, 5000-..... external players
  • 0: Always 0
  • 19: Service type. 1 = SD, 19 = HD, 1F = 4K
  • 1CE9:SID
  • 7F6: TSID
  • 2: ONID
  • 11A0000: Namespace. EEEE0000 for DVB-T, FFFF0000 for DVB-C, satellite orbital position for DVB-S (11Ah = 282d = 28.2E)
  • 0: Always 0
  • 0: Always 0
  • 0: Always 0

 


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: Service references? #5 mrvica

  • Senior Member
  • 1,218 posts

+80
Good

Posted 27 January 2020 - 10:37

#!/bin/sh

serviceref=`/usr/bin/wget -O - -q http://127.0.0.1/web/getcurrent | /bin/grep -B 1 "\(<\|</\)e2servicename" | /bin/sed 's/<[^>]*>//g'
echo $serviceref



Re: Service references? #6 mrvica

  • Senior Member
  • 1,218 posts

+80
Good

Posted 27 January 2020 - 10:45

was truncated, this should work

#!/bin/sh

serviceref=`/usr/bin/wget -O - -q http://127.0.0.1/web/getcurrent | /bin/grep -B 1 "\(<\|</\)e2servicename" | /bin/sed 's/<[^>]*>//g' | /bin/sed 's/^[ \t]*//' | /bin/sed '2d'`
echo $serviceref


Re: Service references? #7 Chris1991

  • Member
  • 11 posts

0
Neutral

Posted 27 January 2020 - 12:20

 

  • 1: The player used. 1 = hardware, 4097 = software, 5000-..... external players
  • 0: Always 0
  • 19: Service type. 1 = SD, 19 = HD, 1F = 4K
  • 1CE9:SID
  • 7F6: TSID
  • 2: ONID
  • 11A0000: Namespace. EEEE0000 for DVB-T, FFFF0000 for DVB-C, satellite orbital position for DVB-S (11Ah = 282d = 28.2E)
  • 0: Always 0
  • 0: Always 0
  • 0: Always 0

 

 

Thanks.

 


#!/bin/sh

serviceref=`/usr/bin/wget -O - -q http://127.0.0.1/web/getcurrent | /bin/grep -B 1 "\(<\|</\)e2servicename" | /bin/sed 's/<[^>]*>//g'
echo $serviceref

I don't actually have a e2 box.

My setup does support the e2 style bouquets though.

Thanks anyways.

 

Chris




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users