-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilebot.skeleton
66 lines (66 loc) · 1.18 KB
/
filebot.skeleton
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
{
name: `Filebot`,
description: `The ultimate tool for organizing and renaming your movies, tv shows or anime, and music well as downloading subtitles and artwork`,
image: `coppit/filebot`,
uuid: `1EBAD7F2-5C5B-4732-86DE-ACA05ADD91F1`,
tags: [
`Media`,
`Storage`
],
actions: [
{
type: `Header`,
title: `Storage`
},
{
type: `SelectDirectory`,
name: `/media`,
description: `Select storage to organize`
}
],
properties: [
{
type: `Feature`,
name: `localtime`
},
{
type: `Directory`,
name: `/config`,
style: `boot`
},
{
type: `Directory`,
name: `/media`,
style: `store`
},
{
type: `File`,
name: `/config/filebot.conf`,
value: `SETTLE_DURATION=10
MAX_WAIT_TIME=01:00
MIN_PERIOD=05:00
DEBUG=0
OPENSUBTITLES_USER=""
OPENSUBTITLES_PASSWORD=""
SUBTITLE_LANG=""
ALLOW_REPROCESSING=yes
RUN_UI=yes
`
},
{
type: `Port`,
name: `8080/tcp`,
port: 8080,
protocol: `TCP`,
web: {
tab: `newtab`,
path: `/`
}
},
{
type: `Network`,
name: `primary`,
value: `home`
}
]
}