File: README

package info (click to toggle)
dvbtune 0.5.ds-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 316 kB
  • ctags: 318
  • sloc: ansic: 2,113; sh: 82; makefile: 48
file content (119 lines) | stat: -rw-r--r-- 3,739 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
DVBtune 0.5
-----------

DVBtune is a simple tuning application for DVB cards supported by the
Linux DVB driver (www.linuxtv.org).

This is still very experimental - especially the XML output.

The latest release can be found at www.linuxstb.org.  You can contact
the author at <dave@dchapman.com>.

There is also a CVS repository (normally more recent than
linuxstb.org) available at

http://sourceforge.net/projects/dvbtools


Installation
------------

The package includes two applications - dvbtune and xml2vdr.

dvbtune has the option to dump the metadata from a DVB
transponder/multiplex into an XML file.  This XML file is hopefully
self-explanatory (i.e. I am too lazy to write documentation for it),
and should be read in conjunction with the DVB-SI standard (EN 300
468) available from www.etsi.org.

xml2vdr can convert this XML file into a "channels.conf" file suitable
for use with the VDR application.

In order to use the included "xml2vdr" utility, you should install the
latest version of libxml (Version 2) from www.xmlsoft.org.  I would
recommend getting the very last ".tar.gz" source version and install
using the standard 

./configure
make
make install

set of commands.

If you are using dvbtune for DVB-T in Finland, you should replace the
"make" command with "make FINLAND=1". or "make FINLAND2=1" (see the
comments in the dvb_defaults.h file for details).

Once you have installed libxml (if required), then you can compile
dvbtune and xml2vdr by just typing "make" in the dvbtune directory.

Usage
-----

Just type "dvbtune" by itself for the full list of options.

For simple tuning operations you can just use:

./dvbtune -f 12188000 -p h -s 27500 -v 163 -a 104 -t 32

to tune to a satellite transponder and set the video, audio and
teletext PIDs.

dvbtune also support DVB-T reception (currently for the UK only).  In
this case, you just need to specify the frequency:

./dvbtune -f 481833000

To get the DVB SI information for a multiplex, you can use the "-i"
option.  The output of dvbtune needs some addition lines before it is
a valid XML file.  e.g. use a script containing

echo '<?xml version="1.0" encoding="iso-8859-1" ?>' > test.xml
echo '<satellite>' >> test.xml
./dvbtune -f freq -s srate -p pol -i  >> test.xml
echo '</satellite>' >> test.xml

to dump the SI for a satellite transponder.

This was done to allow you to write scripts to scan multiple
transponders and write the output to the same XML file.  See the
"scripts" subdirectory for examples.

Contributors
------------

Hilmar Linder - January 2002:

Added Switch -n that adds a network interface and switch -m that
monitors the reception quality. Changed the tuning code. Added command
line parameters for spectral inversion. Changed code to allow L-Band
frequencies with -f switch
   
John Williams - March 2002.

Added -D diseqc support, and made the 22kHz tone automatic again.

Tomi Ollila - June 2002.

Changes to FINLAND DVB-T tuning, and dvb_defaults.h suggestion.


Copyright
---------

(C) Dave Chapman 2001-2004 <dave@dchapman.com> http://www.linuxstb.org

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.