Jump to content


jalizi

Member Since 26 Nov 2012
Offline Last Active 01 Nov 2018 07:48
-----

Posts I've Made

In Topic: How to find caid for current service without ECM (while no softcam running) ?

1 November 2014 - 10:02

This code dumpts the caids in a file...? Not on the OSD....

What file you mean? please explain a more. 

 

What about post  #13?


In Topic: How to find caid for current service without ECM (while no softcam running) ?

1 November 2014 - 09:38

@malakudi, sorry you are right . Your code is working. I'm confused.

 

@littlesat, I tested the code you and malakudi mentioned and this works like a charm. Here is how I used it. May be someone need it in the future:

			service = self.session.nav.getCurrentService()
			info = service and service.info()
			if service is None:
				return
			info = service and service.info()
			if not info:
				return
			caids = info.getInfoObject(iServiceInformation.sCAIDs)
			for caid_entry in caids:
				f = open('/tmp/caids_dump.txt', 'a')
				f.write(str(hex(caid_entry)) + "\n")
				f.close()

BTW, I aggree with you, I would like to see this on service info screen if PLi developers could change related code.

 

 

 

Case is solved. Thanks for both of your quick and usefull responses !

Where to run this code? 
 
Should I run it in telnet?

In Topic: How to find caid for current service without ECM (while no softcam running) ?

1 November 2014 - 09:35

Then you need to use the console (putty telnet) and dvbsnoop.... here the actial used ecms are displayed... but al least you can see the chid.

What is the dvbsnoop? Is it a plugin?
 
How Can I get it for OE 2.0 Merlin3 image on my DM800SE ?