aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-t/se-Kaxholmen_Vistakulle
blob: ede8ad951b96ecfc0d66141b38c936732d752f53 (plain)
1
2
3
# Sweden - Kaxholmen/Vistakulle
# T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy
T 474000000 8MHz 2/3 NONE QAM64 8k 1/8 NONE
l.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
Hi,

this are some trivial zapping applications explaining how to use the frontend
and demux API. They are also pretty useful to test your hardware.

For DVB-S, Astra Channel config file:

$ ./szap -c channels-conf/dvb-s/Astra-19.2E n24

will tune to N24. For DVB-C, Berlin Cable channel config:

$ ./czap -c channels-conf/dvb-c/de-Berlin Arte

For DVB-T, Berlin Config:

$ ./tzap -c channels-conf/dvb-t/de-Berlin phoenix

For ATSC, Raleigh Durham Config:

$ ./azap -c channels-conf/atsc/us-Raleigh-Durham WRAL

will tune to WRAL's Digital Channel 5-1.

By default the MPEG stream is routed to a hardware decoder. If you want to
record the stream to disk you will route it to the DVR device by using the
'-r' option:

$ ./tzap -c channels-conf/dvb-t/de-Berlin phoenix -r
[keep it running in one console]
$ cat /dev/dvb/adapter0/dvr0 > /tmp/recording.ts
[in a second console, will dump the MPEG transport stream to /tmp/recording.ts]

The status messages have the following meaning:

status 0x1f              --- The demodulator status bits.
			      0x1f means all bits set, everything ok.

signal [0x0000...0xffff] --- Signal Strength. Values above 0x8000 should be ok.

snr [0x0000...0xffff]    --- Signal/Noise Ratio. Values above 0x8000 are ok.

ber [0...0xffffffff]     --- Bit Error Rate. The less the better.

unc [0...0xffffffff]     --- Number of Uncorrectable Blocks.
			     Small numbers are Preferable.

If everything is alright and all frontend circuits are working stable
(are locked) you should see a FE_HAS_LOCK in the rightmost line.

Good luck,

Holger