Een stuk uit de log ,heb er zelf geen last van maar ter info
Posted 20 July 2023 - 15:25
Een stuk uit de log ,heb er zelf geen last van maar ter info
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.
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.
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.
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.
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.
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.
Posted 20 July 2023 - 17:13
Gevonden en gefixt: https://github.com/O...e8d9970d0266019
+
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
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.
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.
0 members, 1 guests, 0 anonymous users