Jump to content


Photo

transcode configureren geeft crash


  • Please log in to reply
14 replies to this topic

#1 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 20 July 2023 - 15:25

Een stuk uit de log ,heb er zelf geen last van maar ter info

 

OpenPLi Enigma2 crash log
 
crashdate=do jul 20 15:52:04 2023
compiledate=Jun 22 2023
skin=PLi-FullNightHD/skin.xml
sourcedate=2023-06-21
branch=develop
rev=cdefc40
component=Enigma2
 
stbmodel=gigablue
stbmodel=gbquad4k
kernelcmdline=root=/dev/mmcblk0p9 rootwait rw rootflags=data=journal libata.force=1:3.0G,2:3.0G,3:3.0G coherent_poll=2M vmalloc=525m bmem=529m@491m bmem=608m@2464m
nimsockets=NIM Socket 0:
imageissue=openpli develop %h
 
 
REMOVE Peer gbquad4k
REMOVE Peer gbquad4k
REMOVE Peer gbquad4k
ADD Peer gbue4k=gbue4k.local:8001
ADD Peer gbue4k=gbue4k.local:8001
Traceback (most recent call last):
  File "/usr/lib/enigma2/python/Components/ActionMap.py", line 77, in action
  File "/usr/lib/enigma2/python/Components/ActionMap.py", line 57, in action
  File "/usr/lib/enigma2/python/Screens/Menu.py", line 62, in okbuttonClick
  File "/usr/lib/enigma2/python/Tools/BoundFunction.py", line 10, in __call__
  File "/usr/lib/enigma2/python/Plugins/SystemPlugins/TranscodingSetup/plugin.py", line 189, in main
  File "/usr/lib/enigma2/python/StartEnigma.py", line 312, in open
    dlg = self.current_dialog = self.instantiateDialog(screen, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/StartEnigma.py", line 255, in instantiateDialog
    return self.doInstantiateDialog(screen, arguments, kwargs, self.desktop)
  File "/usr/lib/enigma2/python/StartEnigma.py", line 272, in doInstantiateDialog
    dlg = screen(self, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/Plugins/SystemPlugins/TranscodingSetup/plugin.py", line 98, in __init__
ValueError: invalid literal for int() with base 10: '4000.0'
[ePyObject] (CallObject(<bound method NumberActionMap.action of <Components.ActionMap.NumberActionMap object at 0xb16bfa90>>,('OkCancelActions', 'ok')) failed)
 
 


Re: transcode configureren geeft crash #2 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 15:45

Da's een erreur da nie just is.

 

Lijkt me een ontbrekende sanity check. Al hoewel, dit lijkt eerder een met de hand gewijzigde config file, want de waarde van bitrate kan/mag helemaal geen decimaal bevatten.

 

En een bitrate van 4000 = 4Kbps, dat zal een lekkere stream opleveren... ;)

 

Ik kijk wel even...


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: transcode configureren geeft crash #3 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 20 July 2023 - 15:49

Heb bij instelling 4mb ingegeven dat geeft

4000.0 wat geen integer is



Re: transcode configureren geeft crash #4 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 15:50

Ik snap 'm even niet. De code daar is:

for choice in config.plugins.transcodingsetup.bitrate.choices:

en die choices zijn gedefinieerd als:

config.plugins.transcodingsetup.bitrate = ConfigSelection(default="1000000", choices=[("50000", "50 kbps"), ("100000", "100 kbps"), ("200000", "200 kbps"), ("500000", "500 kbps"), ("1000000", "1 Mbps"), ("1500000", "1.5 Mbps"), ("2000000", "2 Mbps"), ("2500000", "2.5 Mbps"), ("3000000", "3 Mbps"), ("3500000", "3.5 Mbps"), ("4000000", "4 Mbps")])

Daar zit helemaal geen "4000.0" in?


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: transcode configureren geeft crash #5 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 15:52

Heb bij instelling 4mb ingegeven dat geeft

4000.0 wat geen integer is

 

Dat suggereert dat er ergens een deling met 1000 gedaan wordt, dat levert in Python 3 altijd een float op, in tegenstelling tot Python2.

 

FF verder zoeken...


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: transcode configureren geeft crash #6 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 20 July 2023 - 15:53

deze keuze heb ik gemomen

("4000000", "4 Mbps")



Re: transcode configureren geeft crash #7 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 15:54

Gevonden en gefixt: https://github.com/O...e8d9970d0266019


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: transcode configureren geeft crash #8 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 20 July 2023 - 16:04

dat was rap



Re: transcode configureren geeft crash #9 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 16:15

Het probleem van geen issue tracker hebben: als het hier gemeld wordt, en het wordt niet direct opgepakt, dan sneeuwt 't onder en raakt het vergeten...


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: transcode configureren geeft crash #10 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 20 July 2023 - 16:37

Dus goed dat er geen issue tracker is  anders blijft het

op de todo lijst staan  :)

Je zal je afvragen waarom ik wil transcoden ik ben weer aan samsung app

begonnen het probleem dat bepaalde zenders geen beeld geven ligt zo

goed als zeker dat het zenders zijn met erg hoge bitrates zoals ard zdf hd met 12 mb.

zenden onder de 10 mb gaat streamen direct perfect.

Wat ik dan vreemd vind de avplayer van samsung zou uhd en 8k ook aan kunnen maar

daar zet ik vraagtekens bij daarom transcoden naar lagere bitrate en hopen dat

de start van de stream niet lang op zich laat wachten ivm timeout.



Re: transcode configureren geeft crash #11 Dimitrij

  • PLi® Core member
  • 10,338 posts

+352
Excellent

Posted 20 July 2023 - 17:13

+

when use wrong value, e.g. 4000.0, need

-						if int(tokens[1]) * 1000 <= int(choice):
+						if int(float(tokens[1])) * 1000 <= int(choice):

P.S.Transcoding openPLi not support gbquad4k.


Edited by Dimitrij, 20 July 2023 - 17:18.

GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: transcode configureren geeft crash #12 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 20 July 2023 - 17:24

Shit 

Do h9se support transcode ? i need a test enviroment



Re: transcode configureren geeft crash #13 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 18:27

when use wrong value, e.g. 4000.0, need

-						if int(tokens[1]) * 1000 <= int(choice):
+						if int(float(tokens[1])) * 1000 <= int(choice):

 

The 4000.0 value was caused by the division I fixed. There is no need to check it again?


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: transcode configureren geeft crash #14 WanWizard

  • PLi® Core member
  • 70,596 posts

+1,821
Excellent

Posted 20 July 2023 - 18:28

Dus goed dat er geen issue tracker is  anders blijft het

op de todo lijst staan  :)

 

Nu wel ja. In de 99 andere gevallen van de 100 niet dus.
 


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: transcode configureren geeft crash #15 luisteraar

  • Senior Member
  • 2,480 posts

+24
Neutral

Posted 21 July 2023 - 11:48

Heb even stiekem openatv er op gezet .

transcode op 10Mb 720p gezet en direct

beeld op samsung met stream van ard en zdf.

 

Wachten op build openpli en verwacht dat het

op openpli ook direct gaat werken.




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users