Oscam.srvid Generator Apr 2026

Instead of:

Client connected: SID 13E:19:2B78 You will see: oscam.srvid generator

If you are running an OSCam server for satellite or cable TV, you know the frustration of looking at a log file or client connection and seeing only a SID (Service ID) like 13E:19:2B78 instead of a human-readable channel name like "Sky Sport Bundesliga 1 HD". Instead of: Client connected: SID 13E:19:2B78 You will

This is where the file comes in. Think of it as a phonebook for your channels. It translates those cryptic numbers into readable names. It translates those cryptic numbers into readable names

# Find the services section match = re.search(r'services\n(.*?)\nend', content, re.DOTALL) if not match: print("Error: Could not find 'services' section") return [] lines = match.group(1).strip().split('\n') for line in lines: parts = line.split(':') if len(parts) >= 4: sid_hex = parts[0] # Service ID in hex caid = parts[2] # CAID provider_id = parts[3] if len(parts) > 3 else '0000' service_name = parts[4] if len(parts) > 4 else f"Unknown_{sid_hex}" # Clean up name (remove special chars) service_name = re.sub(r'[^\w\s\-\(\)]', '', service_name).strip() services.append({ 'caid': caid, 'sid': sid_hex.upper(), 'provider': provider_id, 'name': service_name }) except Exception as e: print(f"Error reading lamedb: {e}")

for s in services: # Write both generic and provider-specific entries f.write(f"{s['caid']}:{s['provider']} {s['sid']} \"{s['name']}\"\n") print(f"✅ Generated {len(services)} entries in {output_path}") if == " main ": lamedb_path = input("Enter path to lamedb file (default: /etc/enigma2/lamedb): ") or "/etc/enigma2/lamedb" services = parse_lamedb(lamedb_path)

DISCLAIMER: We are a non-profit digitisation project, aiming to digitally preserve software and history which would otherwise be lost for good. If for any reason there is anything that you do not wish to be on the website, please contact us for removal.

Games That Weren't® is the registered trademark of Frank Gasking.