|
@@ -1,7 +1,39 @@
|
1
|
1
|
# GetPicons
|
2
|
2
|
|
3
|
|
-### Enigma2 plugin to dowload and create channels picons files form lyngsat.com
|
|
3
|
+#### Enigma2 plugin to dowload and create channels picons files form lyngsat.com
|
4
|
4
|
|
5
|
|
-------------
|
6
|
|
-Copyright (c) 2015-2016 ivars777 (ivars777@gmail.com)
|
|
5
|
+Dowloads and creates Enigma2 channels picons files form lyngsat.com (straight forward downloading and resizing without transparency and other fine tunings).
|
|
6
|
+Picons for all channels in lamed are downloaded (you can subselect particular sattelites or packages via paremeters).
|
|
7
|
+No symlinks are created for same images.
|
|
8
|
+
|
|
9
|
+You can run it several ways:
|
|
10
|
+
|
|
11
|
+1. As a Dreambox plugin (GetPicons)
|
|
12
|
+2. From Dreambox command line (/usr/script/get_picons.sh)
|
|
13
|
+3. From PC command line
|
|
14
|
+
|
|
15
|
+**Prerequisites**:
|
|
16
|
+- Python 2.x
|
|
17
|
+- Python libraries- Imaging (PIL) (usually part of standart python)
|
|
18
|
+
|
|
19
|
+**Usage (command line):**
|
|
20
|
+```
|
|
21
|
+python get_picons.py [options]
|
|
22
|
+```
|
|
23
|
+Options:
|
|
24
|
+
|
|
25
|
+ -p PACKAGE_LIST, --package=PACKAGE_LIST list of package names (html file name in lyngsat),
|
|
26
|
+ e.g "viasat,ntvplus36"
|
|
27
|
+ -s SAT_LIST, --sat=SAT_LIST list of sattelite positions, e.g. "4.9,-0.8"
|
|
28
|
+ -z SIZE icon size, e.g. "100x60", default - "220x132"
|
|
29
|
+ -f PATH, --folder PATH picon files output folder, default - "/media/hdd/picon"
|
|
30
|
+ -e PATH, --enigma PATH enigma2 folder whera lamedb,settings are located, default - "/etc/enigma2"
|
|
31
|
+ you can use urls, e.g. "ftp://root@receiver_address/etc/enigma2"
|
|
32
|
+ -o, -overwrite overwrite existing picons file (default - no)
|
|
33
|
+ -d, -debug display work progress and write debug info to file for not found services
|
|
34
|
+ -h, --help this help file
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+Copyright (c) 2015-2016 ivars777 (ivars777@gmail.com)
|
7
|
39
|
Distributed under the GNU GPL v3. For full terms see http://www.gnu.org/licenses/gpl-3.0.en.html
|