Page 2 of 3

Re: [E² Plugin] E2m3u2bouquet

Posted: 18 May 2024, 06:08
by sugar
UPDATE 1.7.2

1) The code responsible for setting playlist parameters has been completely rewritten
2) The base ConfigSelection class has been redesigned. If your image supports displaying graphics in the selection options of the settings window, then you will display icons instead of phrases. This modification also works on any DreamOS-based images. For example, this functionality can be “evaluated” on OpenPli, OpenBH, Merlin, GP4, etc. images.
60582-4cd13c76e5cb4b301790719ebd7b7bce.png
60582-4cd13c76e5cb4b301790719ebd7b7bce.png (100.8 KiB) Viewed 755 times
60583-0e6782da719d2efc3414026825697939.png
60583-0e6782da719d2efc3414026825697939.png (130.42 KiB) Viewed 755 times

Re: [E² Plugin] E2m3u2bouquet

Posted: 04 Jun 2024, 12:29
by ocean777
UPDATE 1.7.3
1) The M3U playlist parser function has been redesigned as a "generator". This allows to significantly save RAM, and eliminate Enigma2 reactor freezes when processing huge playlists
2) Calling the "Reset Bouquets" item from the main menu now deletes both favorites created by this plugin and channel icons ever downloaded by this plugin. Previously, only favorites were deleted
3) ​Added support for links with HTTP basic authorization when importing EPG data. We are talking about links to XMLTV in this format

Re: [E² Plugin] E2m3u2bouquet

Posted: 05 Jun 2024, 04:38
by sugar
UPDATE 1.7.3

1) The M3U playlist parser function has been redesigned as a "generator". This allows to significantly save RAM, and eliminate Enigma2 reactor freezes when processing huge playlists
2) Calling the "Reset Bouquets" item from the main menu now deletes both favorites created by this plugin and channel icons ever downloaded by this plugin. Previously, only favorites were deleted
3) Added support for links with HTTP basic authorization when importing EPG data. We are talking about links to XMLTV in this format
scheme://login:password@domain:port/path?query#fragment
For example
http://piter:qwwerty@www.service.com/ep ... epg.xml.gz
4) Minor changes in plugin code and EPG importer to support "prehistoric" images and receivers ... For example, Chinese VU+ clones with OpenPli4
5) Fixed a bug with the inability to select files from the root directory (playlists, key-file, etc.)
6) Added Bulgarian menu localization

Re: [E² Plugin] E2m3u2bouquet

Posted: 06 Jun 2024, 04:56
by sugar
UPDATE

1.0.74


1) Changed the logic for getting channel icons from links from the playlist used. Now the type of link does not matter, as long as it is valid. When downloading an icon, its contents are analyzed and if it is a picture, it is saved as a PNG file. If the "Optimize channel picons on load" item is enabled in the playlist settings, then the file format of the "picture" received from the link can be almost any, it will be automatically converted to PNG. If this settings menu item is disabled, then the format of the files received via the link must be PNG only, otherwise, it will not be saved. This change allows you to easily receive channel icons, for example, for tvheadend playlist
Code

tvg-logo="http://192.168.1.26:9981/imagecache/120?auth=123456789"

2) Fixed a bug displaying the values of settings menu items for the ConfigBoolen class on some images (OpenPli4 etc.)

Re: [E² Plugin] E2m3u2bouquet

Posted: 07 Jun 2024, 06:02
by sugar
UPDATE 1.0.74

1) Changed the logic for getting channel icons from links from the playlist used. Now the type of link does not matter, as long as it is valid. When downloading an icon, its contents are analyzed and if it is a picture, it is saved as a PNG file. If the "Optimize channel picons on load" item is enabled in the playlist settings, then the file format of the "picture" received from the link can be almost any, it will be automatically converted to PNG. If this settings menu item is disabled, then the format of the files received via the link must be PNG only, otherwise, it will not be saved. This change allows you to easily receive channel icons, for example, for tvheadend playlist

Code: Select all

tvg-logo="http://192.168.1.26:9981/imagecache/120?auth=123456789"
2) Fixed a bug displaying the values of settings menu items for the ConfigBoolen class on some images (OpenPli4 etc.)

Re: [E² Plugin] E2m3u2bouquet

Posted: 08 Jun 2024, 04:57
by ocean777
UPDATE 1.7.5
1) Fixed a crash when clicking OK in the menu for selecting playlist groups when they were missing

2) Now in the playlist settings, you can add archived playlist files. Supported formats - GZ, XZ, and ZIP. The logic behind this is very simple. Sometimes users send me playlists of incredible sizes (500,000+ entries) for testing, the size of such files is from 60 to 140 MB... In the archive, they take up no more than 2-9 MB. Unpacking and reading data from the archive occurs in a “stream” and has virtually no effect on the playlist’s parsing speed. But it saves a lot of storage space... especially if there are a lot of such playlists

For example

Re: [E² Plugin] E2m3u2bouquet

Posted: 12 Jun 2024, 05:15
by ocean777
UPDATE 1.7.6
1) Fixed an issue that some users encountered when specifying an m3u file and a link to an EPG
2) Minor optimization and universalization of the code

Re: [E² Plugin] E2m3u2bouquet

Posted: 21 Jun 2024, 04:53
by ocean777
UPDATE
1.7.7
1) Fixed plugin skin files for full compatibility with Vti images

2) Minor changes in the files responsible for EPG import. Now on images based on Python 3.10 - 3.12, this process will happen much faster. On earlier versions of Python, there is also a performance gain, but it is not as noticeable in comparison with more recent versions of Python

3) Minor changes in log output
tnx pepsik

Re: [E² Plugin] E2m3u2bouquet

Posted: 07 Jul 2024, 16:27
by ocean777
UPDATE
1.7.8
1) Small optimization of the regexp parser of #EXTINF directive data of the m3u playlist

2) Changes have been made to the log output when there is no key file

3) Added the ability to interrupt the process of receiving groups from the playlist when using bouquet customization in playlist settings ("red" or "exit" button during obtaining or processing the playlist) ... In this case, information about the interruption of this process by the user will be displayed in the log.
Image

Re: [E² Plugin] E2m3u2bouquet

Posted: 08 Jul 2024, 04:42
by sugar
UPDATE
1.7.8


1) Small optimization of the regexp parser of #EXTINF directive data of the m3u playlist
2) Changes have been made to the log output when there is no key file
3) Added the ability to interrupt the process of receiving groups from the playlist when using bouquet customization in playlist settings ("red" or "exit" button during obtaining or processing the playlist) ... In this case, information about the interruption of this process by the user will be displayed in the log.

thanks Dorik1972