mirror of
https://github.com/moparisthebest/rcrdit
synced 2024-10-31 23:35:12 -04:00
59 lines
2.4 KiB
XML
59 lines
2.4 KiB
XML
<!--
|
|
~ rcrdit records TV programs from TV tuners
|
|
~ Copyright (C) 2017 Travis Burtrum
|
|
~
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU Affero General Public License as
|
|
~ published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU Affero General Public License
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<!-- rename this to rcrdit.cfg.xml and pass it's path in as an argument -->
|
|
<rcrdit>
|
|
<!-- jdbc database path, sqlite/postgresql/oracle/anything jdbc should work too if proper libraries are available -->
|
|
<databaseUrl>jdbc:mysql://localhost:3306/rcrdit?user=rcrdit&password=rcrdit</databaseUrl>
|
|
<!-- path to xmltv.xml file normally generated by xmltv scripts from schedulesdirect or http://zap2xml.awardspace.info/ -->
|
|
<xmltvPath>/etc/xmltv.xml</xmltvPath>
|
|
<!-- all channels you recieve, one of the names from each channel from xmltv.xml above -->
|
|
<channels>
|
|
<channel>2.1</channel>
|
|
<channel>2.2</channel>
|
|
<channel>2.3</channel>
|
|
<channel>7.1</channel>
|
|
<channel>7.2</channel>
|
|
<channel>7.3</channel>
|
|
<channel>16.1</channel>
|
|
<channel>16.2</channel>
|
|
<channel>16.3</channel>
|
|
<channel>16.4</channel>
|
|
<channel>16.5</channel>
|
|
<channel>22.1</channel>
|
|
<channel>22.2</channel>
|
|
<channel>22.3</channel>
|
|
<channel>22.4</channel>
|
|
<channel>26.1</channel>
|
|
<channel>26.2</channel>
|
|
<channel>26.3</channel>
|
|
<channel>43.1</channel>
|
|
<channel>43.2</channel>
|
|
<channel>43.3</channel>
|
|
<channel>43.4</channel>
|
|
<channel>43.5</channel>
|
|
<channel>45.1</channel>
|
|
<channel>45.2</channel>
|
|
<channel>45.3</channel>
|
|
</channels>
|
|
<!-- all tuners available and their configuration, HDHomeRun is currently the only option -->
|
|
<tuners>
|
|
<tuner type="HDHomeRun" url="http://10.16.18.105:5004/auto/v%s"/>
|
|
<tuner type="HDHomeRun" url="http://10.16.18.105:5004/auto/v%s"/>
|
|
</tuners>
|
|
</rcrdit> |