Display Morehere you have to test on py2 images
Please test and report some possible bugs..
Lululla , I have created PR on git.. this one is functional..
Cheers
please pm me.. with folder i make a new branche for py2 ;)
Display Morehere you have to test on py2 images
Please test and report some possible bugs..
Lululla , I have created PR on git.. this one is functional..
Cheers
please pm me.. with folder i make a new branche for py2 ;)
Hi Lululla : How can i start the Webserver when i have installed the plugin......
when i press the 1 or th 0 always the info come "You must start the Server first" but how?
About an answear many thanks lullula
[Plugin] Stalker Portal Playlist Converter
Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read Read
serviceapp, It's not contemplated in this case. It works in any way since there's a proxy.
- Do as you wish.
I'm off sick.
Here, nothing changes.
Honestly?
I'm fed up.
Always the same old answers. You can't read them, you can't give details. From now on, I won't be available.
I'm deleting Vavoo. Since it doesn't work, so you say. I'll delete it. Maybe even from your receivers.
Good afternoon, how can I fix this?
Those icons are part of the enigma2 system of the image mounted by (oealliance).
If there isn't a list with your plugins and the appropriate icon, it will display a standard icon (x).
The skin has nothing to do with it. Ask the image team here.
Display MoreThat's right, you're showing me a picture. But I don't know how. Can you post an example here?
Example: Sky Atlantic
Channel Reference Number: 1:0:19:6E:D:85:C00000:0:0:0:
In the bouquet, the line for Sky Atlantic begins as follows (or similar):
SERVICE 4097:0:0:0:0:0:0:0:0:0:http ...You change this according to the Sky Atlantic channel reference number as follows:
SERVICE 4097:0:19:6E:D:85:C00000:0:0:0:http...This should make the EPG work ... now let's move on to the picon:
For this, a symbolic link named "4097_0_19_6E_D_85_C00000_0_0_0.png" must be created, which then points to the desired logo --> done!
... Pumuckel
can you try this?
[Plugin] Archimede-M3UConverter - Enigma2 System Utility Plugins - Linux Satellite Support Community
Display MoreHi Lululla,
I execute the start_proxy.sh script.
curl -s http://127.0.0.1:4323/status .... with no answer.
Please look at the attachment.
Best regardsvavoo147error2.jpg
telnet:
cd /usr/lib/enigma2/python/Plugins/Extensions/vavoo
bash start_proxy.sh
or
sh start_proxy.sh
only for PY3.. !
you have edited??
ok ok..
use this
lululla is a thief; he stole the Foreca4 plugin from its original author, Evg77734, who didn't allow him to make any edits. But lululla said he doesn't care about laws or copyright.
Previously, lululla also stole the Astronomy plugin from the same author.
This thread and the Astronomy thread should be deleted, and the thief, lululla, should be punished.
#
# Design and idea by
# @Bauernbub
# enigma2 mod by mogli123
But just to give an example, and there are thousands of lines of the original... in the plugin.py
But I added other files that weren't in the original code or in his plugin...
Like these:
He didn't discover anything new...
def _load_favorite(self, fav_index, path_loc):
""" write by lululla
Load a favorite (single function for all favorites)
Args:
fav_index: 0=Home, 1=Fav1, 2=Fav2
path_loc: location path (e.g. "103169070/Rome-Italy")
"""
global myloc, town, cur_temp, fl_temp, dewpoint, pic, wind, wind_speed, wind_gust, rain_mm, hum, pressure, country
global f_town, f_date, f_time, f_symb, f_cur_temp, f_flike_temp, f_wind, f_wind_speed, f_precipitation, f_rel_hum
global lon, lat, sunrise, daylen, sunset, f_day
myloc = fav_index # <-- THIS is the only real difference!
location_id = path_loc.split('/')[0] if '/' in path_loc else path_loc
# 1. CURRENT WEATHER VIA API (or scraping fallback)
if self.weather_api.check_credentials():
result_current = self.weather_api.get_current_weather(location_id)
if (
result_current
and isinstance(result_current, (list, tuple))
and len(result_current) == 17
and result_current[0] != 'N/A'
):
town, cur_temp, fl_temp, dewpoint, pic, wind, wind_speed, wind_gust, rain_mm, hum, pressure, country, lon, lat, sunrise, daylen, sunset = result_current
print(
"[Foreca4] Fav{0}: Current weather via API".format(fav_index))
else:
town = cur_temp = fl_temp = dewpoint = pic = wind = wind_speed = wind_gust = rain_mm = hum = pressure = country = lon = lat = sunrise = daylen = sunset = 'N/A'
# self.my_cur_weather()
# 2. FORECAST VIA API (or scraping fallback)
if self.weather_api.check_credentials():
result_forecast = self.weather_api.get_hourly_forecast(
location_id, days=1)
if result_forecast and result_forecast[0] != 'N/A':
f_town, f_date, f_time, f_symb, f_cur_temp, f_flike_temp, f_wind, f_wind_speed, f_precipitation, f_rel_hum, f_day = result_forecast
self.my_forecast_weather()
# 3. UPDATE INTERFACE
self["day_len"].setText(str(conv_day_len(daylen))
if is_valid(daylen) else "N/A")
self["sunrise_val"].setText(
str(sunrise) if is_valid(sunrise) else "N/A")
self["sunset_val"].setText(str(sunset) if is_valid(sunset) else "N/A")
# 4. LOAD MAP IN BACKGROUND
Thread(target=self.mypicload).start()
# 5. UPDATE TITLE AND DAILY FORECASTS
self.titel()
self.Zukunft(0)
def Fav0(self):
"""Home (Blue button)"""
self._load_favorite(0, path_loc0)
def Fav1(self):
"""Favorite 1 (Green button)"""
self._load_favorite(1, path_loc1)
def Fav2(self):
"""Favorite 2 (Yellow button)"""
self._load_favorite(2, path_loc2)
def Zukunft(self, ztag=0):
"""Load forecast for a specific day"""
global f_town, f_date, f_time, f_symb, f_cur_temp, f_flike_temp, f_wind, f_wind_speed, f_precipitation, f_rel_hum, f_day
self.tag = ztag
# Determine which favorite is active
path_loc = ""
if myloc == 0:
path_loc = path_loc0
elif myloc == 1:
path_loc = path_loc1
elif myloc == 2:
path_loc = path_loc2
else:
path_loc = path_loc0 # Default
location_id = path_loc.split('/')[0] if '/' in path_loc else path_loc
# FIRST TRY API
if self.weather_api.check_credentials() and location_id:
result_forecast = self.weather_api.get_hourly_forecast(
location_id, days=ztag + 1)
if result_forecast and result_forecast[0] != 'N/A':
f_town, f_date, f_time, f_symb, f_cur_temp, f_flike_temp, f_wind, f_wind_speed, f_precipitation, f_rel_hum, f_day = result_forecast
self.my_forecast_weather()
self.StartPage()
return
self.my_forecast_weather()
self.StartPage()
Display More
its code is this, code not important for the functioning of foreca but only for decoration.
class Color_Select(Screen): (not important)
class InfoBox1(Screen): (not important)
class ExtInfo_Foreca4(Screen): (not important)
class ExtInfo_2_Foreca4(Screen): (not important)
class Meteogram_Foreca4(Screen): (not important)
When I modify a plugin, you always leave credit.
Maybe in Russia you're used to not sharing.
I do things in the open. The Foreca 5 version will be scraping-free, just like version 1.36, which I'll release soon.
So I didn't steal anything. In fact, I even posted the improvements and the added panels, but you deleted the topic.
This topic remains open, as it has always been since the first version of Foreca ;)
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#
# $Id$
#
# -------------------------------------------------------
#
# Foreca Weather Forecast E2
#
# This Plugin retrieves the actual weather forecast
# for the next 10 days from the Foreca website.
#
# We wish all users wonderful weather!
#
#
# 11/03/2025
#
# Source of information: https://www.foreca.com
#
# Design and idea by
# @Bauernbub
# enigma2 mod by mogli123
#
# -------------------------------------------------------
#
# Provided with no warranties of any sort.
#
# -------------------------------------------------------
#
# History:
# 2.6 Various minor changes
# 2.7 Wrap around mode enabled in screen-lists
# 2.8 Calculate next date based on displayed date when left/right key is pushed
# after prior date jump using 0 - 9 keys was performed
# 2.9 Fix: Show correct date and time in weather videos
# Main screen navigation modified to comply with standard usage:
# scroll page up/down by left/right key
# select previous/next day by left/right arrow key of numeric key group
# 2.9.1 Latvian cities and localization added. Thanks to muca
# 2.9.2 Iranian cities updated and localization added. Thanks to Persian Prince
# Hungarian and Slovakian cities added. Thanks to torpe
# 2.9.3 Detail line in main screen condensed to show more text in SD screen
# Grading of temperature colors reworked
# Some code cosmetics
# Translation code simplified: Setting the os LANGUAGE variable isn't needed anymore
# Typos in German localization fixed
# 2.9.4 Many world-wide cities added. Thanks to AnodA
# Hungarian and Slovakian localization added. Thanks to torpe
# 2.9.5 Fixed: Cities containing "_" didn't work as favorites. Thanks to kashmir
# 2.9.6 Size of temperature item slightly extended to match with skins using italic font
# Grading of temperature colors reworked
# 2.9.7 Use specified "Frame size in full view" value when showing "5 day forecast" chart
# Info screen reworked
# False temperature colors fixed
# Up/down keys now scroll by page in main screen (without highlighting selection)
# 3.0.0 Option added to select measurement units. Thanks to muca
# Option added to select time format.
# Setup menu reworked.
# Main screen navigation modified: Select previous/next day by left/right key
# Many Italian cities added and Italian localization updated. Thanks to mat8861
# Czech, Greek, French, Latvian, Dutch, Polish, Russian localization updated. Thanks to muca
# 3.0.1 Fix broken transliteration
# Disable selection in main screen.
# 3.0.2 Weather maps of Czech Republic, Greece, Hungary, Latvia, Poland, Russia, Slovakia added
# Temperature Satellite video added
# Control key assignment in slide show reworked to comply with Media Player standard
# Some Italian cities added
# Thumbnail folders compacted
# Unused code removed, redundant code purged
# Localization updated
# 3.0.3 List of German states and list of European countries sorted
# Code cosmetics
# Localization updated
# 3.0.4 Language determination improved
# 3.0.5 Setup of collating sequence reworked
# 3.0.6 Weather data in Russian version obtained from foreca.com instead of foreca.ru due
# to structural discrepancy of Russian web site
# Code cosmetics
# 3.0.7 Turkish cities updated. Thanks to atsiz77
# Debug state noted in log file
# 3.0.8 Fixed for Foreca's pages changes
# 3.0.9 Path for weather map regions updated after change of Wetterkontor's pages. Thanks to Bag58.
# Add missing spinner icon
# 3.1.0 Plugin splitted into a loader and UI part, as Foreca needs quite a while to load. Hence
# actual load postponed until the user requests for it.
# Finnish localization added. Thanks to kjuntara
# Ukrainian localization added. Thanks to Irkoff
# 3.1.1 ForecaPreview skineable
# 3.1.2 Next screens skineable
# 3.1.3 Added font size for slideshow into setting
# 3.1.4 rem /www.metoffice.gov.uk due non existing infrared on this pages more
# 3.1.7 fix url foreca com
# 3.1.8 fix problem with national chars in favorite names
# 3.1.9 renamed parsed variables, added humidity into list - for display in default screen must be:
# changed line: self.itemHeight = 90 ... change to new height, if is needed
# and rearanged lines: self.valText1 = 365,5,600,28
# self.valText2 = 365,33,600,28
# self.valText3 = 365,59,600,28
# self.valText4 = 365,87,600,28
# similar in user skin - there text4Pos="x,y,w,h" must be added
# 3.2.0 fixed satellite maps, removed infrared - page not exist more, sanity check if nothing is downloaded
# 3.2.3-r3 change URL to .net and .ru
# 3.2.7 change URL to .hr, Py3-bugfix for videos and several code cleanups
# 3.2.8 'startservice.cfg', 'fav1.cfg' and 'fav2.cfg' are obsolete and now part of etc/enigma2/settings and therefore can be deleted
# 3.2.9 change URL to .biz (THX to jup @OpenA.TV) and some code improvements
#
# To do:
# Add 10 day forecast on green key press
# City search at Foreca website on yellow key press. This will eliminate complete city DB.
# Option to add unlimited cities to a favorite list and to manage this favorite list (add & delete city, sort list).
# Show home city (first entry of favorite list) on OK key press.
# Skip to next/previous favorite city on left/right arrow key.
# Show weather videos and maps on blue key
# Show setup menu on Menu key
# 3.2.11 Umstellung auf Foreca Seite .biz und Nutzung WebClientContextFactory für https
# Unresolved: Crash when scrolling in help screen of city panel
# To do:
# Show weather videos and maps on blue key
# Show setup menu on Menu key
#
# 3.3.4 change URL to and many code improvements
# RECODE FROM LULULLA TO 20241222
# To do:
# Add choice list for pressur and other menu
# check all url and fetch..
# CACHE_PATH moved
# FAlog moved
# secure remove image from folde CACHE_PATH
# Remove profile ICC from bad image
# 3.3.5 change URL to and many code improvements
# RECODE FROM LULULLA
# To do:
# Add server url online
# 3.3.6 fix translations and many code improvements
# RECODE FROM LULULLA
# 3.3.7 removed .cfg files - add TV button for Menu Config
# RECODE FROM LULULLA
# 3.3.8 Mahor fix on clean all code unnecessay / append new PY3
# Translate 90% complete
# # thank's Orlandoxx restore Eumsat screen picxview
# RECODE FROM LULULLA
# Foreca 4 Weather and Forecast
#
# RECODE FROM (C) Evg77734, 2025
# v.1.3.4
#
# mod Lululla 2026.01.25 v.1.3.4_r2
# Core API:
# Authentication system, token/tile cache (foreca_map_api.py).
# Interface:
# Layer selection menu and basic viewer with timeline (foreca_map_menu.py, foreca_map_viewer.py).
# Integration:
# Menu item in the main plugin, configuration reading from file.
# Features:
# Download and merge 3x3 tile grids, overlay on existing background maps (temp_map.png, europa.png, etc.).
# Trial Limitations:
# The code is compatible with the trial plan limit: 1,000 tiles/day for maps.
# The cache I implemented helps avoid exceeding this limit by reusing already downloaded tiles.
# Language Translation:
# Implementation of GetText translation and Google AI API
# major fix
# graphic oktus
# mod Lululla 2026.01.25 v.1.3.5
# fix map viewer transcode to api from scraper
# mod Lululla 2026.01.25 v.1.3.6
# complete conversion migration from scraper to api foreca.
v.2.8.9
-fix locale Language
no have ideas my friend..
Expiring: ??
It means it's expiring, but it regenerates automatically. Otherwise, just restart if you want to be precise.
on browser digit
your_ip_box:4323/status
your_ip_box:4323/channels?country=Italy
your_ip_box:4323/catalog
your_ip_box:4323/refresh_token
work for m e, proxy is ok..
Maybe we should check on the website if the channels actually exist and are active?
Ok thanks..... I don´t know what i maked but now working like the over bouquets in E2...
![]()
The thing is, you don't read the previous replies. There was a whole presentation of the new plugin, complete with explanations and how it works ;)
You would have surely understood.
But it's already visible in the main menu when you have to wait a moment.. and a message appears.
Proxy OK
Display MoreHello, i found this threat & i´m a little curious how it work, i´ve installed it, working ok but i can t find how it work with the exported file example france:
#EXTM3U
#EXTINF:-1,100% DOCS .c
http://192.16x.1.122:4323/vavoo?channel=218007192799e45400a82c
#EXTINF:-1,13EME RUE .b
http://192.16x.1.122:4323/vavoo?channel=1295685361fa92ed799b6a
Thank you for help
Out of curiosity, you have to study. ![]()
my germany
#NAME Germany
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=18254938455ea9d58931e4:[KINDER] DER KLEINE PRINZ .c
#DESCRIPTION [KINDER] DER KLEINE PRINZ .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=701382547a9649a3c2758:[KINDER] DRAGON BALL 724 .c
#DESCRIPTION [KINDER] DRAGON BALL 724 .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=2869897012f73109b45c42:[KINDER] HT SPONGEBOB .c
#DESCRIPTION [KINDER] HT SPONGEBOB .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=39775874011c2882519b56:[KINDER] PJ MASKS 724 .c
#DESCRIPTION [KINDER] PJ MASKS 724 .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=23162310375786f668543c:[KINDER] THE BOSS BABY 724 .c
#DESCRIPTION [KINDER] THE BOSS BABY 724 .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=12583560881a8ec18b0c81:[KINDER] TOM UND JERRY SHOW 724 .c
#DESCRIPTION [KINDER] TOM UND JERRY SHOW 724 .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=1353734992860f3c677fc5:[KINDER] WIR KINDER AUS DEM MOWENWEG .c
#DESCRIPTION [KINDER] WIR KINDER AUS DEM MOWENWEG .c
#SERVICE 4097:0:1:0:0:0:0:0:0:0:http%3a//127.0.0.1%3a4323/vavoo?channel=51258455e96a10e83da6:1.2.3 TV .s
Display More
/tmp/vavoo.log