-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeliman.conf.dist
104 lines (53 loc) · 2.24 KB
/
meliman.conf.dist
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
[Database]
# The location of the database file for locally caching metadata.
# Make sure this file is writable by the user running the application.
file=/src/meliman/tmp/metadata.db
[Library]
# Right now, the only valid format is pyTivo
format=pyTivo
# The application will watch this directory for new files
# and will process any media files matching watched series
input_path=/src/meliman/tmp/input
# The application will watch this directory for new files
# and will process any media files matching imdb
movie_input_path=/src/meliman/tmp/movie_input
# This is the library folder for TV shows imported by
# the application
tv_path=/src/meliman/tmp/tv
# This is the library folder for TV shows oganized by genre
tv_genre_path=/src/meliman/tmp/tv_genres
# This is the library folder for movies imported by
# the application.
movie_path=/src/meliman/tmp/movies
# This is the library folder for TV shows oganized by genre
movie_genre_path=/src/meliman/tmp/movie_genres
# This is the library folder for recent media files
# imported by the application.
recent_path=/src/meliman/tmp/recent
# This tells the application how long to keep newly added media
# files in the recent additions folder
# 1 day = 1440
# 2 days = 2880
# 3 days = 4320
# 4 days = 5760
# 5 days = 7200
# 6 days = 8640
# 7 days = 10080
recent_duration_in_minutes=5
[Miscellaneous]
# The location of the lock file ensuring that only one instance of
# the application is running at a time. Make sure this file is
# writable by the user running the application.
lock_file=/src/meliman/tmp/process_lock.txt
# Any files ending with one of these extension is considered a media file.
media_file_extensions=avi,mpg,mpeg,mp4,m4v
# When generating a pattern to match incoming media files against,
# these words are excluded from the pattern
title_words_to_ignore=a,an,at,and,the,from,with
# When generating a pattern to match incoming media files against,
# these characters are excluded from the pattern
title_chars_to_ignore=,.;:/?'"-_+&[]{}|=\!@#$%^&*()`~
# This tells the application to wait a certain number of minutes before
# processing a new file. The timer starts from the creation time of
# the file.
wait_after_file_creation_in_minutes=10