Posts by Lululla
-
-
-
i put on linuxsat-panel
regards
Hello, you did a very nice and good job. I will put the newer version of this skin here today. And do you have the possibility to do this for Dreambox? Because I designed some skins for Dream and it would be great if it becomes deb.
no problem for me .. pm me zip version
-
i put on linuxsat-panel
regards
-
Problem with OpenAtv 7.5 RC1...Zgemma H7S...Plugin not open
my friend i don't have dieas wit log posted..

-
v.2.5 online
changelog=
- fix MenuList (recoded)
- reduced source code
You need to update because the server list style has changed
please use this command from telnet:
wget -q "--no-check-certificate" https://raw.githubusercontent.com/Belfagor2005/LinuxsatPanel/main/installer.sh -O - | /bin/sh > /tmp/debug.log 2>&1 &
@ Use this button i nto plugin:
info: SYSTEM INFO
yellow_long: FORCE UPDATE
info_long: FORCE UPDATE
-
It is good manners that as soon as you enter the linuxsat-forum house you greet in the specially created INTRODUCING section, then you can post and ask all the questions you want.

and.. please
use language ENGLISH for forum
-
-
you should first stop by the Introduction section of the forum to say hello, it's your first post. Then maybe you can ask anything.
-
-
-
Display More
dreambox 920 merlin images
The old version installed on the device was deleted and the plugin was reinstalled
1-The old version number is still visible in the py file
2-It gives the no module requests error and does not appear in the plugins
3-The plugin does not appear despite being installed with the requests command or by dumping it into tmp
1,. ok is only number
2. no have reqeusts... details this error please
3.. == 2
try this and report
-
-
No work openatv 7.5 rc1 on octagon sf 8008
dipa62.. no work what doesn't work? but really like children, at least say what, be patient, a debug a photo something more sorry.
I have version 1.32, I use openatv 7.5 rc1 and octagon sf 8008. The plugin always remains downloaded with the box in the center and nothing happens, to be able to continue using the decoder I have to turn off the power and restart it because it freezes. Until a few days ago it worked well, probably something has changed with the latest opeatv updates.
I need a debug right now I have a 7.4 on the box. If you have time you can do a debug. Or tell me which version worked for you. I didn't understand the freeze well, it freezes when downloading what? When upgrading the plugin?
Thank's -
Code
Display Moredef icy_monitor(self): service_name = self.session.nav.getCurrentService().info().getName() ref = self.session.nav.getCurrentlyPlayingServiceReference().toString() try: stream_url = ref.split(':')[10] stream_url = stream_url.replace('%3a', ':') except IndexError: self["icy_title"].setText("Invalid reference format: " + ref) return if not stream_url.startswith(('http://', 'https://')): stream_url = 'http://' + stream_url # or 'https://' if not stream_url: self["icy_title"].setText("No valid URL supplied for streaming.") return try: response = requests.get(stream_url, headers={'Icy-MetaData': '1'}, stream=True, timeout=10, verify=False) response.raise_for_status() headers = response.headers stream = response.raw meta_byte = stream.read(1) if not isinstance(meta_byte, int): meta_byte = ord(meta_byte) meta_int = headers.get('icy-metaint') if meta_int is not None: audio_length = int(meta_int) audio_data = stream.read(audio_length) if meta_byte: meta_length = meta_byte * 16 meta_data = stream.read(meta_length) if isinstance(meta_data, bytes): meta_data = meta_data.decode('utf-8', errors='ignore') if "StreamTitle='" in meta_data: meta_data = meta_data.split("StreamTitle='")[1].split("';")[0] else: meta_data = "N/A" self["icy_title"].setText(str(service_name) + "\n\n" + meta_data) else: self["icy_title"].setText(str(service_name) + "\n\nMetadata not available") except Exception as e: self["icy_title"].setText("Error: " + str(e)) -
no, Error: a bytes-like object is required not 'str', my old code with the snippet ok, seems Python 3.9 (PLi) and 3.12 (ATV) is not the same
unpleasant side effect, the non-printable chars are displayed as hex string \x... and I don´t know how to fix it, on python 2.7 (PLI 8.3) everything is fine
this is last code.. i don't have time my friend for joke.. :)
-
I had already warned you about this before but you obviously meant something else.
In Python 2, strings are treated as bytes by default, while in Python 3 you need to explicitly convert between bytes and strings.
-
have you tried XCForever in tandem with tmdb?
Pressing info on a movie should give you all the info you need.
-
Please
I would like to use code tags in reply options for live links or commands so as not to leave traces on the web and to clarify the commands
Thanks
-
no no,
I was wondering why the error occurred because str on tuple and str on txt are different..
Ok try this
