-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.json
More file actions
35 lines (35 loc) · 855 Bytes
/
Copy pathconfig.json
File metadata and controls
35 lines (35 loc) · 855 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
30
31
32
33
34
35
{
"importFolder": "./imports",
"exportFolder": "/var/www/html/iptv",
"minutesBetweenImports": "360",
"sources": [
{
"name": "MyProvider",
"m3u": "http://url-of-my-stream-provider/streams.m3u",
"models": [
{
"name": "",
"filters": [
{
"field": "group-title",
"regex": "UK .*|USA .*"
}
],
"transformations": [
{
"field": "group-title",
"regex": "(UK|USA).*",
"substitution": "$1"
},
{
"field": "tvg-name",
"regex": "(.*?) *: *(.*)",
"substitution": "$1: $2"
}
]
}
],
"epg": "http://url-of-my-guide-provider/xmltv.xml"
}
]
}