EPGImport mod from Dorik1972 Latest

Tools EPGImport mod from Dorik1972 Latest New Fix for Version 1.9.0

No permission to download
New Fix for Version 1.9.0


● [27/08/2022 GMT 6:00]: Fixed "connection" error for DreamOS based images

Thanks Dorik1972
  • Like
Reactions: msatter
EPGImport mod from Dorik1972
Version 1.9.0

plugin.png


● Fixed/added the ability to "recognize" XML files in 'UTF-8-BOM' encoding. For example:
Code:
https://raw.githubusercontent.com/bebawy6/EPG/master/allEPG.xml
● Fixed handling of XMLTVs packed in ZIP. For example:
Code:
http://tvg.mymagic.tv/tvg.zip
● Dropped support for importing "categories" from XMLTV to epg.dat/epg.db as useless and unused in 99% of cases


Thanks Dorik1972
EPGImport mod from Dorik1972
Version 1.8.9

plugin.png


● Added the ability to read *.sources files in any of the supported archives (GZ, XZ, or ZIP)
● Fix crash on log clear on Python3-based images
● Minor code reorganization


Thanks Dorik1972
EPGImport mod from Dorik1972
Version 1.8.8

plugin.png


● The logic of working with "downloadable" files has been completely redesigned. There is no binding to the file name or its extension. Uploaded files are parsed based on a "magic number" and then the content is determined to be a valid XML structure. This solution allows using any links for XMLTV, for example:
Code:
http://example.com:8087/xmltv.php?username=USER&password=PASS
http://example.com/api/xmltv.xml.7.2
http://example.com/epg.xml.gz?token=123456789
http://example.com/provider.epg
http://example.com/epg.xmltv.gz
http://example.com/epg.xmltv.xz
http://example.com/epg.xmltv.zip
http://example.com/EPG
● Playing around with the epg.db wrapper code for a more stable import (for DreamOS images only!). Now you can even turn off the power "on the go" (during import) and no data will be lost or "corrupted"

Thanks Dorik1972
  • Like
Reactions: saphfire
EPGImport mod from Dorik1972

Version 1.8.6

1) Fix for images based on Python 3.10 (OpenATV 7.1)
2) Minor code reorganization

Thx @ Dorik1972
  • Like
Reactions: Fozzy1 and msatter
EPGImport mod from Dorik1972
Version 1.8.4


plugin.png


● Fixed sporadically occurring "segmentation fault" in OpenATV 6.4 on some xmltv.
● Minor code reorganization: added "Title" for some skins, fixed display of strings in log etc.

Thanks Dorik1972
EPGImport mod from Dorik1972
Version 1.6


plugin.png


● Fixed logic for escaping invalid characters for xml
● Added XMLTV presets for Spain, Italy and "Slavic" countries
● Small code optimization in handling EPG events when reading from XMLTV and adding to eEPGCache

Thanks Dorik1972
EPGImport mod from Dorik1972

Version1.5


In Agent.request, by default, there is only the connectTimeout parameter, in fact, as in any other method tied to the Agent. This timeout only affects the TCP connection setup timeout. Setting it to 5 means that if a TCP connection to the HTTP server for a specific URL cannot be established in less than 5 seconds, the request attempt will fail with a timeout error. However, if the connection is successfully established, the timeout no longer matters. If the server takes 10 hours to send you a response, the agent will sit and wait 10 hours.
This release fixes this situation and adds a timeout for the maximum allowed response time. The default is 10 sec. In other words, if we have not received the target file in 10 seconds, this will be considered a timeout error, and the download of the file will be interrupted. Yesterday morning the provider Glanz was giving away its EPG file for more than 3 hours. It is unacceptable.
Back
Top