Jump to content


Photo

crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62

picon commit github

  • Please log in to reply
24 replies to this topic

#1 display name

  • Senior Member
  • 630 posts

+26
Good

Posted 23 November 2024 - 17:05

Picon.py commit gives me this crash?

https://github.com/O...d5b31e02ec24a62

Traceback (most recent call last):
  File "/usr/lib/enigma2/python/Navigation.py", line 88, in dispatchEvent
    x(i)
    ~^^^
  File "/usr/lib/enigma2/python/Components/PerServiceDisplay.py", line 17, in event
    func[1](ev)
    ~~~~~~~^^^^
  File "/usr/lib/enigma2/python/Components/Sources/CurrentService.py", line 33, in serviceEvent
    self.changed((self.CHANGED_SPECIFIC, event))
    ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/enigma2/python/Components/Element.py", line 92, in changed
    self.downstream_elements.changed(*args, **kwargs)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/usr/lib/enigma2/python/Tools/CList.py", line 7, in __call__
    x(*args, **kwargs)
    ~^^^^^^^^^^^^^^^^^
  File "/usr/lib/enigma2/python/Components/Converter/ServiceName.py", line 103, in changed
    Converter.changed(self, what)
    ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/usr/lib/enigma2/python/Components/Element.py", line 92, in changed
    self.downstream_elements.changed(*args, **kwargs)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "/usr/lib/enigma2/python/Tools/CList.py", line 7, in __call__
    x(*args, **kwargs)
    ~^^^^^^^^^^^^^^^^^
  File "/usr/lib/enigma2/python/Components/Renderer/Picon.py", line 169, in changed
    pngname = getPiconName(self.source.text)
  File "/usr/lib/enigma2/python/Components/Renderer/Picon.py", line 101, in getPiconName
    series = re.sub(r"s[0-9]*e[0-9]*$", "", name)
                                            ^^^^
NameError: name 'name' is not defined. Did you mean: 'sname'?
[ePyObject] (CallObject(<bound method Navigation.dispatchEvent of <Navigation.Navigation object at 0xb04c88d0>>,(0,)) failed)


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #2 WanWizard

  • PLi® Core member
  • 70,542 posts

+1,813
Excellent

Posted 23 November 2024 - 17:25

I've let Huevos know.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #3 display name

  • Senior Member
  • 630 posts

+26
Good

Posted 23 November 2024 - 17:25

Crash is gone after changing Picon.py line 101

name to sname

series = re.sub(r"s[0-9]*e[0-9]*$", "", sname)



Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #4 display name

  • Senior Member
  • 630 posts

+26
Good

Posted 23 November 2024 - 17:26

I've let Huevos know.

Thanks



Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #5 Huevos

  • PLi® Contributor
  • 4,663 posts

+163
Excellent

Posted 23 November 2024 - 20:37

Fixed here:

https://github.com/O...igma2/pull/4106

 

But this series thing looks like someone's personal IPTV code has somehow entered the public image because no real channels are named like that. Why would a channel name contain "Season" and "Episode"? And of course it only works for English, and only in that one format. So, "picon not found" == "another unnecessary lookup".


Edited by Huevos, 23 November 2024 - 20:38.


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #6 WanWizard

  • PLi® Core member
  • 70,542 posts

+1,813
Excellent

Posted 23 November 2024 - 21:17

Merged by Littlesat.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #7 WanWizard

  • PLi® Core member
  • 70,542 posts

+1,813
Excellent

Posted 23 November 2024 - 21:18

But this series thing looks like someone's personal IPTV code has somehow entered the public image because no real channels are named like that. Why would a channel name contain "Season" and "Episode"? And of course it only works for English, and only in that one format. So, "picon not found" == "another unnecessary lookup".

 

I agree it shouldn't be there. Apart from IPTV support (which isn't a bad idea these days), having VOD / Series as bouquet entries is a bad idea anyway.
 


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #8 Huevos

  • PLi® Contributor
  • 4,663 posts

+163
Excellent

Posted 23 November 2024 - 21:34

Well with @DimitarCC plugin there is no need for VoD in bouquets. All that stuff is in a nice menu with a search function, TMDB, etc.

 

 

Attached Files

  • Attached File  1.jpg   42.62KB   2 downloads
  • Attached File  2.jpg   73.53KB   2 downloads
  • Attached File  3.jpg   88.69KB   2 downloads


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #9 littlesat

  • PLi® Core member
  • 57,182 posts

+699
Excellent

Posted 23 November 2024 - 21:40

It also doesn’t belongs in normal channel lists… at least not ‘right away’

Edited by littlesat, 23 November 2024 - 21:41.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #10 Huevos

  • PLi® Contributor
  • 4,663 posts

+163
Excellent

Posted 23 November 2024 - 21:52

It also doesn’t belongs in normal channel lists… at least not ‘right away’

It was added here: https://github.com/O...fe200dfbbca82ab



Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #11 WanWizard

  • PLi® Core member
  • 70,542 posts

+1,813
Excellent

Posted 23 November 2024 - 22:25

There it wasn't an issue, as the variable "name" existed. The refactor changed the variable name.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #12 yyvon66

  • Member
  • 16 posts

0
Neutral

Posted 25 November 2024 - 16:36

hello,

now i have green screen,

 

how i do to repair ?

 

thanks

Attached Files


Octagon SF8008 4k UHD -E2 Openpli 9 & openpli 9 develop - script Nagra premium -PoweCam + tv samsung QE55 QN90AA + A5 serie sound bar


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #13 Huevos

  • PLi® Contributor
  • 4,663 posts

+163
Excellent

Posted 25 November 2024 - 17:08

Load Picon.py from the enigma repo.



Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #14 littlesat

  • PLi® Core member
  • 57,182 posts

+699
Excellent

Posted 25 November 2024 - 17:12

Or try via console/putty

 

init 4

opkg update

opkg upgrade

init 3


WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #15 ricki

  • Senior Member
  • 612 posts

+3
Neutral

Posted 25 November 2024 - 19:03

Or try via console/putty

 

init 4

opkg update

opkg upgrade

init 3

it does not fix the error



Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #16 littlesat

  • PLi® Core member
  • 57,182 posts

+699
Excellent

Posted 25 November 2024 - 19:49

Then I’m afraid you need to wait until a new build completes see the right top corner https://openpli.org/

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #17 littlesat

  • PLi® Core member
  • 57,182 posts

+699
Excellent

Posted 25 November 2024 - 19:53

I’m afraid you need to wait a moment or manually put the latest picons.py on your box manually… today the buildserver get hardware revision.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #18 Tech

  • Forum Moderator
    PLi® Core member
  • 14,925 posts

+486
Excellent

Posted 25 November 2024 - 20:47

I’m afraid you need to wait a moment or manually put the latest picons.py on your box manually… today the buildserver get hardware revision.

All three buildservers get a revision.


Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....

On the edge of the abyss, a step forward is not always progress....

Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna

Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam

Press the Geplaatste afbeelding button on the buttom right of this message ;)

Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #19 WanWizard

  • PLi® Core member
  • 70,542 posts

+1,813
Excellent

Posted 25 November 2024 - 22:00

And a quick search ( or even a scan of yesterday and todays topics ) would have avoided all these duplicate messages.

 

This is development, it can break.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: crash with commit/514071b11fa181687b12173dcd5b31e02ec24a62 #20 ricki

  • Senior Member
  • 612 posts

+3
Neutral

Posted 25 November 2024 - 22:13

The question was whether you can do something without flashing, that was never really answered in my opinion.

Huevos wrote something about Load Picon.py from the enigma repo. Not so easy to understand for everyone





Also tagged with one or more of these keywords: picon, commit, github

8 user(s) are reading this topic

0 members, 8 guests, 0 anonymous users