Difference between revisions of "NoLineupProposal"

From XMLTV
Jump to: navigation, search
m (unsure, needs clarification)
m (extend example)
 
Line 49: Line 49:
 
     <original_network_id>8468</original_network_id>
 
     <original_network_id>8468</original_network_id>
 
     <service_id>515</service_id>
 
     <service_id>515</service_id>
 +
  </dvb-service>
 +
 +
on italian DVB-T
 +
  <dvb-service>
 +
    <original_network_id>8572</original_network_id>
 +
    <service_id>32</service_id>
 
   </dvb-service>
 
   </dvb-service>
  

Latest revision as of 19:31, 17 July 2011

This proposal is in the making

This proposal by Karl Dietz on how to match channels from a channel scan to channels in the guide without lineups is an alternative to LineupProposal and LineupProposal2.

sketch of the process

The process of configuring a consuming application should be like.

  • install application and hardware
  • pick a guide source (and do the basic configuration, everything but selecting the channels)
  • perform a scan to find all available channels
  • the application shall connect the available channels to the guide channels

additional metadata

To allow automagic mapping of guide data to received channels then channel list should be extended to carry channel identifiers that are useful to machines (aka DVB/ETSI/etc. IDs) in addition to channel identifiers destined for human consumption (aka the channel name). Identifiers with use for machines:

  • the combination of DVB original_network_id and service_id is defined to be globally unique. One channel will usually have a bunch of them. E.g. one for transmission via DVB-S and one for DVB-T. DVB-C might carry the satelite channel or one crafted for cable, so you can find satelite IDs on cable.
  • the combination of DVB bouquet name (what's with Bouquet_ID?) and service name could be useful to suggest a preferred candidate in case the DVB identifiers don't match up. (e.g. missing data for a region/provider)
  • for redigitalization via the analog hole the old ETSI country and network identification might be useful as it is carried in teletext and VPS. (not sure if there are distinct IDs for regional variants of channels)

example of extended --channel-list

<channel id="3sat.de">
  <display-name lang="de">3sat</display-name>
  <icon src="ht tp://xmltv.spaetfruehstuecken.org/chanlogos/3sat.de.png"/>

3sat on Astra (and many cable operators that use the Astra feed)

  <dvb-service>
    <original_network_id>1</original_network_id>
    <service_id>28007</service_id>
  </dvb-service>

3sat on cable operators that use the ZDF cable feed

  <dvb-service>
    <original_network_id>102</original_network_id>
    <service_id>28007</service_id>
  </dvb-service>

3sat on cable operators that use the NDS satelite services (http://www.vdr-wiki.de/wiki/index.php/Channels.conf_DVBC-At-Niederösterreich-Kabelsignal)

  <dvb-service>
    <original_network_id>222</original_network_id>
    <service_id>12402</service_id>
  </dvb-service>

on austrian DVB-T

  <dvb-service>
    <original_network_id>8232</original_network_id>
    <service_id>11302</service_id>
  </dvb-service>

on german DVB-T

  <dvb-service>
    <original_network_id>8468</original_network_id>
    <service_id>515</service_id>
  </dvb-service>

on italian DVB-T

  <dvb-service>
    <original_network_id>8572</original_network_id>
    <service_id>32</service_id>
  </dvb-service>

can on all transmissions (even analog) in Teletext packet 8/30 format 1

  <etsi-pdc-cni>0x49c7</etsi-pdc-cni>
</channel>

interactions

The API for the consuming application:

  • "tv_find_grabbers" will offer all installed xmltv grabbers
  • "tv_grab_xx --configure-api --stage start" will optionally collect configuration data until it says "next stage is channel selection"
  • "tv_grab_xx --list-channels" will list all available channels

(note that the list might be a subset of all theoretically available channels due to being restricted to

  1. a lineup
  2. the country for which you bought the guide
  3. upstream channel selection

in the earlier configuration stages)

  • "tv_grab_xx --configure-api --stage select-channels"

unsure, needs clarification

  • --list-channels shall list all channels that are available on the select-channels stage. In contrast the normal grab will only list the configured channels. A consumer can always go back and search for new channels to configure by calling --list-channels again.

sources