diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-09 14:57:43 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-09 14:57:43 +0200 |
commit | c00d4ea326e61d76d7ab5760a5c06646d6b88ab0 (patch) | |
tree | 2462fd5c1759f451d8f1c54cedc10b5b0d74cfd1 /FORMATS | |
parent | d4eb96f725bed149762665ddee275301c9f069a6 (diff) | |
download | vdr-c00d4ea326e61d76d7ab5760a5c06646d6b88ab0.tar.gz vdr-c00d4ea326e61d76d7ab5760a5c06646d6b88ab0.tar.bz2 |
Implemented 'channel grouping'
Diffstat (limited to 'FORMATS')
-rw-r--r-- | FORMATS | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/FORMATS b/FORMATS new file mode 100644 index 00000000..776fb4fc --- /dev/null +++ b/FORMATS @@ -0,0 +1,35 @@ +Video Disk Recorder File Formats +-------------------------------- + +* channels.conf + + This file contains the channel setup. + It consists of two types of lines: "group delimiters" and "channel + definitions". + + A "group delimiter" is a line starting with a ':' as the very first + character, followed by arbitrary text. + Example: ":First group" + + A "channel definition" is a line with channel data, where the fields + are separated by ':' characters: + Example: "RTL:12188:h:1:27500:163:104:0:12003" + + The fields in a channel definition have the following meaning (from left + to right): + + - Name: the channel's name (if the name originally contains a ':' character + it has to be replaced by '|') + - Frequency in MHz (as an integer) + - Polarization (one of 'h', 'H', 'v', 'V') + - Diseqc number + - Symbol rate + - Video PID + - Audio PID + - Conditional Access (0 = Free To Air, 1 = can be decrypted by the first + DVB card, 2 = can be decrypted by the second DVB card) + - Program Number + +* timers.conf + + TODO |