-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.py
More file actions
29 lines (21 loc) · 795 Bytes
/
config.py
File metadata and controls
29 lines (21 loc) · 795 Bytes
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
# IP or hostname of your MythTV backend
hostname = "<ip or hostname>"
# Port number of your MythTV backend (this is the default, can probably leave as-is)
host_port = "6544"
# A list of MythTV recording directories, full paths in quotes, separated by commas
mythtv_recording_dirs = ["/pool/mythtv/recordings-kids/"]
# Path to write symlinks
symlinks_dir = "/pool/myth2kodi/recordings/"
# API key for TheTVDB
ttvdb_key = "<your ttvdb key>"
# Path to store TheTVDB series zips
ttvdb_zips_dir = "/pool/myth2kodi/ttvdb/"
# API key for TheMovieDB
tmdb_key = "<your tmdb key>"
# MythTV database host, username, password, and database name
db_host = "localhost"
db_user = "mythtv"
db_passwd = "mythtv"
db_name = "mythconverg"
# Comskip location
comskip_exe = "/home/mythtv/comskip/comskip.exe"