OSCam/en/Config/oscam.dvbapi: Unterschied zwischen den Versionen

Aus Streamboard Wiki
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
 
(27 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
[[Kategorie:OSCam]]
[[Kategorie:OSCam]]
[[Datei:WarningS.png|text-bottom]] '''Attention:''' The content of the english pages are partially still in german. Please register here to help us completing and translating the articles.
{{OSCamHomeLinks}}


= oscam.dvbapi =
== oscam.dvbapi ==
Konfigurationsdatei für DVBapi. Damit kann bei multicrypt Sendern die Entschlüsselung drastisch beschleunigt und unnötige Anfragen verhindert werden.
DVBAPI configuration file for OSCam


S: pmtX_X.tmp
=== Syntax ===
P: CAID:[provider ID]:[service ID]:[ECM PID] [force]
   
I: CAID:[provider ID]:[service ID]:[ECM PID]
{{OSCamDVBapiSyntaxParameter}}
  D: CAID:[provider ID]:[service ID]:[ECM PID] delay
M: CAID:[provider ID]:[service ID]:[ECM PID] CAID:[provider ID]


S = Stapi Device Mapping. Damit wird festgelegt auf welches STAPI Device OSCam "hört". Gültige Einträge für
'''S''' = set DVB API device name and PMT File name ('''valid for STAPI only!''')
bereits getestete Receiver findet man in der Device List im TRAC. http://streamboard.gmc.to:8001/wiki/DeviceList


P = Settings für Priority,
'''P''' = set priority, recommended for pay-per-view services/EMMs (use carefull!)
    force = 1        # kann DVBAPI nichts entschlüsseln wird auf dieser CAID so lange versucht bis es klappt
                      # z.b. notwendig um eine Karte ohne Freischaltung zu öffnen
                      # default ist ohne force - es wird 3x versucht einen Kanal zu öffnen


I = Settings für Ignore
'''I''' = set ignore


D = Settings für Delay in Millisekunden für das Schreiben der CW's (wenn der Server zu schnell liefert ;-)
'''J''' = joined CAID[:]joined provider ID[:]joined ECM PID join to another ECM PID


M = Settings für Mapping
'''A''' = set a dummy ECM request with CAID FFFF for services with a constant CW shown as unencrypted service(for STBs without PMT ID support only!)


  Beispiele:
'''X''' = add decoding on an extra demux index on the same CA device (Multi ECM) (not support on all STBs)
  P: 0100:123456      # CAID 0100 mit Provider 123456 hat Vorrang
 
  P: 0100 1            # CAID 0100 wird so lange versucht bis eine Karte ohne Freischaltung offnen ist
'''D''' = set delay in milli seconds writing CWs
P: :::1234           # ECM mit Provider ID 1234 hat auf jedem Service Vorrang
 
  P: 0200              # CAID 0200 hat Vorrang
'''L''' = set ECM length in '''hexa'''
  P: 0300:9ABC         # CAID 0300 hat nur auf Service 9ABC Vorrang
   
  M: 0400 0500:123456 # Mapped CAID 0400 und 0500 ständig zu provider ID 123456
'''M''' = mapping
  D: 0600 200          # Wartet 200 ms bevor CW für CAID 0600 geschrieben wird
 
  I: :654321          # Ignoriert Provider ID 654321 für jeden service
'''[ECM PID]''' = This specifies the identifier code of the ECM PID to which the rule applies (optional).
  I: 0                 # Ignoriert jede CAID, die nicht zuvor bearbeitet wurde
 
'''[CHID]''' = This specifies the identifier code of the channel to which the rule applies (optional).
 
'''[FORCE]''' = Indicates to dvbapi to force the use of a certain decoding (optional).
 
'''[PIDX]''' = This specifies the identifier number of the ECM PID to which the rule applies (optional).
 
=== Old Examples ===
  P: 0100:123456      # prioritise CAID 0100 with provider 123456
  P: :1234             # prioritise ECM with provider ID 1234 on on any service
  P: 0200              # prioritise CAID 0200
  P: 0300::9ABC       # prioritise CAID 0300 on service 9ABC only
  I: :654321          # ignore provider ID 654321 for every service
  I: 0                # ignore every CAID that was not handled before
  D: 0600 200          # wait 200 ms before writing CW for CAID 0600
  L: 0700 8e          # ECM length for CAID 0700 to 8e ('''hexa''')
M: 0400 0500:123456  # map CAID 0400 to provider ID 123456 with CAID 0500 always
 
=== New Examples ===
<span style="background-color:Green;color:White;padding:0 5px;">NEW svn 9771: 21/06/2014</span>
P:0100:00006C 0:3 (prio 0100:00006c if this ecmpid is registered as PID3 in pmt, no force)
P:0100 1 (prio caid 0100, use force)
P:0500 1:5 (prio caid 0500, use force but only if this 0500 caid is listed as 5th pid in the pmt)
I:0100:00006A:::5C00 1 (ignore fakechid 5C00 if this ecmpid is registered as PID1 in pmt)
  I:0100:00006A 0 (ignore 0100:0006A if this ecmpid is registered as PID0 in pmt)
P:0100:00006A:::FC10 (prio 0100:00006a if ecm contains fakechid FC10)
 
{{OSCamTranslatedLinks}}

Aktuelle Version vom 17. September 2014, 20:28 Uhr

OSCam Übersicht OSCam Home OSCam Accueil OSCam Home

oscam.dvbapi

DVBAPI configuration file for OSCam

Syntax

S: [device] [PMT file name]
P: [CAID]:[provider ID]:[service ID]:[ECM PID]:[CHID] continue
I: [CAID]:[provider ID]:[service ID]:[ECM PID]:[CHID] ignore
J: [CAID]:[provider ID]:[service ID]:[ECM PID] join
A: ::service ID:[video PID]:[provider ID][:][ECM PID]
   ÄNDERUNG - CHANGE - MODIFICATIONS - MODIFICA  svn 9851:09/17/2014
X: [CAID]:[provider ID]:[service ID]:[ECM PID] demux
D: [CAID]:[provider ID]:[service ID]:[ECM PID] delay
L: [CAID]:[provider ID]:[service ID]:[ECM PID] ECM length (hexa)
M: [CAID]:[provider ID]:[service ID]:[ECM PID] target CAID:[target provider ID]
   NEW svn 9771: 21/06/2014 
   ÄNDERUNG - CHANGE - MODIFICATIONS - MODIFICA  svn 9811:07/22/2014
P: [CAID]:[provider ID]:[service ID]:[ECM PID]:[CHID]:[FORCE]:[PIDX] priority
I: [CAID]:[provider ID]:[service ID]:[ECM PID]:[CHID]:[PIDX] ignore

S = set DVB API device name and PMT File name (valid for STAPI only!)

P = set priority, recommended for pay-per-view services/EMMs (use carefull!)

I = set ignore

J = joined CAID[:]joined provider ID[:]joined ECM PID join to another ECM PID

A = set a dummy ECM request with CAID FFFF for services with a constant CW shown as unencrypted service(for STBs without PMT ID support only!)

X = add decoding on an extra demux index on the same CA device (Multi ECM) (not support on all STBs)

D = set delay in milli seconds writing CWs

L = set ECM length in hexa

M = mapping

[ECM PID] = This specifies the identifier code of the ECM PID to which the rule applies (optional).

[CHID] = This specifies the identifier code of the channel to which the rule applies (optional).

[FORCE] = Indicates to dvbapi to force the use of a certain decoding (optional).

[PIDX] = This specifies the identifier number of the ECM PID to which the rule applies (optional).

Old Examples

P: 0100:123456       # prioritise CAID 0100 with provider 123456
P: :1234             # prioritise ECM with provider ID 1234 on on any service
P: 0200              # prioritise CAID 0200
P: 0300::9ABC        # prioritise CAID 0300 on service 9ABC only
I: :654321           # ignore provider ID 654321 for every service
I: 0                 # ignore every CAID that was not handled before
D: 0600 200          # wait 200 ms before writing CW for CAID 0600
L: 0700 8e           # ECM length for CAID 0700 to 8e (hexa)
M: 0400 0500:123456  # map CAID 0400 to provider ID 123456 with CAID 0500 always

New Examples

NEW svn 9771: 21/06/2014
P:0100:00006C 0:3 (prio 0100:00006c if this ecmpid is registered as PID3 in pmt, no force)
P:0100 1 (prio caid 0100, use force)
P:0500 1:5 (prio caid 0500, use force but only if this 0500 caid is listed as 5th pid in the pmt)
I:0100:00006A:::5C00 1 (ignore fakechid 5C00 if this ecmpid is registered as PID1 in pmt)
I:0100:00006A 0 (ignore 0100:0006A if this ecmpid is registered as PID0 in pmt)
P:0100:00006A:::FC10 (prio 0100:00006a if ecm contains fakechid FC10) 

Diese Seite in anderen Sprachen - This page in other languages - Cette page dans d'autres langues - Queste pagine in altre Lingue

[[OSCam/de/{{#titleparts:OSCam/en/Config/oscam.dvbapi|3|3}}|Deutsch]] [[OSCam/en/{{#titleparts:OSCam/en/Config/oscam.dvbapi|3|3}}|English]] [[OSCam/fr/{{#titleparts:OSCam/en/Config/oscam.dvbapi|3|3}}|Français]] [[OSCam/it/{{#titleparts:OSCam/en/Config/oscam.dvbapi|3|3}}|Italiano]]