Compare commits

..

5 Commits
20 ... 22

Author SHA1 Message Date
j0nnymoe
09f478d615 Merge pull request #31 from tobbenb/libsmaster
Add missing libs for xmltv
2016-09-22 16:37:24 +01:00
tobbenb
d5b2cbaeb4 Add missing libs for xmltv 2016-09-22 16:48:01 +02:00
j0nnymoe
59a8633e2a Merge pull request #30 from tobbenb/wgfixmaster
Fix broken tv_grab_wg and update README
2016-09-22 15:25:25 +01:00
tobbenb
8c239ea3e4 Update README 2016-09-22 14:50:54 +02:00
tobbenb
f768afd1c3 Fix tv_grab_wg not working 2016-09-22 14:45:22 +02:00
3 changed files with 7 additions and 4 deletions

View File

@@ -226,7 +226,9 @@ RUN \
apk add --no-cache \ apk add --no-cache \
ffmpeg \ ffmpeg \
ffmpeg-libs \ ffmpeg-libs \
libhdhomerun-libs && \ libhdhomerun-libs \
libxml2 \
libxslt && \
# cleanup # cleanup
apk del --purge \ apk del --purge \

View File

@@ -117,8 +117,9 @@ FFmpeg is installed in /usr/bin/ in case you need to use it with pipe.
**EPG XML file** **EPG XML file**
If you have EPG data in XML format from a supplier, you can drop it in the data folder of your your /config volume mapping. Then choose the XML file grabber in Configuration --> Channel/EPG --> EPG Grabber Modules. If you have EPG data in XML format from a supplier, you can drop it in the data folder of your /config volume mapping. If it doesn't exist, create it. Then choose the XML file grabber in Configuration --> Channel/EPG --> EPG Grabber Modules.
If you use WebGrab+Plus, choose the WebGrab+Plus XML file grabber. The XML file goes in the same path as above. If you use WebGrab+Plus, choose the WebGrab+Plus XML file grabber. The XML file goes in the same path as above.
The xml file has to be named guide.xml.
For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl] For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
@@ -129,6 +130,7 @@ For advanced setup of tvheadend, go to [Tvheadend][tvheadendurl]
## Versions ## Versions
+ **22.09.2016:** Fix broken tv_grab_wg, libs for xmltv and update README.
+ **18.09.2016:** Update XMLTV to 0.5.68 and update README. + **18.09.2016:** Update XMLTV to 0.5.68 and update README.
+ **10.09.2016:** Add layer badges to README. + **10.09.2016:** Add layer badges to README.
+ **05.09.2016:** Initial release. + **05.09.2016:** Initial release.

View File

@@ -1,12 +1,11 @@
#!/bin/bash #!/bin/bash
xmltv_file_location=/config/data/*.xml
dflag= dflag=
vflag= vflag=
cflag= cflag=
qflag= qflag=
if (( $# < 1 )) if (( $# < 1 ))
then then
cat "$xmltv_file_location" cat /config/data/*.xml
exit 0 exit 0
fi fi