Timeout beim einlesen der WebTV Senderlisten?

Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

habe heute mal bissel gespielt mit ..
https://github.com/4v3ngR/pluto_tv_scraper

nach dem ich mir das auf der H7 installiert hatte .. und das ding lief ..

Code: Alles auswählen

plutotv scraper  1704   root    18  rw- TCPv6 sockfs     8  3455 state=listen laddr=[::]:8090
habe ich das gleich mal getestet ..
[+] Spoiler

Bildschirmfoto vom 2026-06-03 20-57-42.png
und mit dieser keinen routine konnte ich das problem des einlesens vom der playlist+epg lösen.

Code: Alles auswählen

local function reload_neutrino()
    os.execute('/usr/bin/sectionsdcontrol --readxmltvepg ' .. PATHS.xmltv_url)
    os.execute('pzapit -c')
--    os.execute('wget -q "http://localhost/control/reloadchannels" -O /dev/null')
end
das sieht dann so aus ..

Code: Alles auswählen

8/8: Neutrino: WebTV neu einlesen...
Reading xmltv epg from http://127.0.0.1:8090/plutotv_de.xml....
reloading channels
  ✓ Neutrino reloaded
und das mach ich so für plutotv und samsungtvplus ..
[+] Spoiler

screenshot.png
das ergebnis ist perfekt und alles da ..
[+] Spoiler

screenshot (1).png
screenshot (2).png
und das alles ohne .. blauen taste .. :wink:
Benutzeravatar
Gorcon
NI - VIP
Beiträge: 3153
Registriert: Mi 13. Apr 2016, 10:55
Box: E2HD, VU+ Uno4kSE, VU+ Ultimate4k
Has thanked: 171 times
Been thanked: 47 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von Gorcon »

Ist Deine Routine nur für eine Senderliste gedacht? Ich kann mit

Code: Alles auswählen

.. PATHS.xmltv_url
nichts anfangen.
Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

Gorcon hat geschrieben: Di 30. Jun 2026, 08:34 Ist Deine Routine nur für eine Senderliste gedacht? Ich kann mit

Code: Alles auswählen

.. PATHS.xmltv_url
nichts anfangen.
ja .. ist eine variable .. PATHS.xmltv_url .. und damit lese ich die ..
http://127.0.0.1:8090/plutotv_de.xml
http://127.0.0.1:8090/plutotv_us.xml
http://127.0.0.1:8090/plutotv_gb.xml
jeweils ein ..

pass dir mal das an und teste .. also shell script speichern z.b. mit get_playlist.sh ..
und nicht vergessen chmod +x get_playlist.sh

Code: Alles auswählen

#!/bin/sh
# ersetze url1-10 mit deiner url 
/usr/bin/sectionsdcontrol --readxmltvepg url1
/usr/bin/sectionsdcontrol --readxmltvepg url2
/usr/bin/sectionsdcontrol --readxmltvepg url3
/usr/bin/sectionsdcontrol --readxmltvepg url4
/usr/bin/sectionsdcontrol --readxmltvepg url5
/usr/bin/sectionsdcontrol --readxmltvepg url6
/usr/bin/sectionsdcontrol --readxmltvepg url7
/usr/bin/sectionsdcontrol --readxmltvepg url8
/usr/bin/sectionsdcontrol --readxmltvepg url9
/usr/bin/sectionsdcontrol --readxmltvepg url10
#channels neu einlesen bzw. aktualisieren.
pzapit -c
exit 0

Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

nachtrag .. ich lese damit keine playlist ein sondern den epg .. plutotv_de.xml

Code: Alles auswählen

8/8: Neutrino: WebTV neu einlesen...
Reading xmltv epg from http://127.0.0.1:8090/plutotv_de.xml....
reloading channels
  ✓ Neutrino reloaded
die playlist speichere ich direkt nach /var/tuxbox/webtv
z.b. mit ..
curl -skL -o /var/tuxbox/webtv/plutotv_de.m3u8 http://127.0.0.1:8090/plutotv_de.m3u8
Benutzeravatar
Gorcon
NI - VIP
Beiträge: 3153
Registriert: Mi 13. Apr 2016, 10:55
Box: E2HD, VU+ Uno4kSE, VU+ Ultimate4k
Has thanked: 171 times
Been thanked: 47 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von Gorcon »

OK. Dann bringt es mir überhaupt nichts. Die Senderliste ist ja auf der Box und der EPG ist auch dort, aber die Sender werden halt erst angezeigt wenn ich über die blaue Taste sie einlese. Mit dem EPG habe ich keine Probleme.
Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

Gorcon hat geschrieben: Di 30. Jun 2026, 18:33 OK. Dann bringt es mir überhaupt nichts. Die Senderliste ist ja auf der Box und der EPG ist auch dort, aber die Sender werden halt erst angezeigt wenn ich über die blaue Taste sie einlese. Mit dem EPG habe ich keine Probleme.
welches format haben deine senderliste bzw. playlist .xml oder .m3u
z.b. bei mir ist die plutotv playlist eine .m3u8 diese konvertiere ich per lua script in eine .xml
beide dateien .. also playlist + epg heissen plutotv_de.xml vllt. ist das der trick ..
d.h. ich lese epg ein mit ..

Code: Alles auswählen

/usr/bin/sectionsdcontrol --readxmltvepg http://127.0.0.1:8090/plutotv_de.xml
diese wird aber nicht physisch gespeichert sondern nur eingelesen ..
dann wird die konvertiere .m3u8 also die senderliste /var/tuxbox/webtv/plutotv_de.xml
mittel "pzapit -c" reloadet .. ergebnis ..

Code: Alles auswählen

[zapit.cpp:PrepareChannels:1443] LoadServices: success
[bouquets.cpp:readEPGMapping:1481] read /var/tuxbox/config/zapit/epgmap.xml
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/plutotv_de.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/samsungtvplus_de.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/webtv_orf.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/webtv_srf.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/webtv_usr.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /usr/share/tuxbox/neutrino/webtv/yt_live.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webradio from /var/tuxbox/webradio/webradio_usr.xml ...
[bouquets.cpp:parseBouquetsXml:440] reading bouquets from /var/tuxbox/config/zapit/ubouquets.xml
[bouquets.cpp:parseBouquetsXml:542] total: 54 bouquets
alles da ..
damit du das besser sehen bzw. verfolgen kannst in der konsole ..
mach mal das ..

Code: Alles auswählen

sc | pzapit -c
ob da was auffällig ist ..
Benutzeravatar
Gorcon
NI - VIP
Beiträge: 3153
Registriert: Mi 13. Apr 2016, 10:55
Box: E2HD, VU+ Uno4kSE, VU+ Ultimate4k
Has thanked: 171 times
Been thanked: 47 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von Gorcon »

Code: Alles auswählen

    ###   ###  ###
     ###   ##  ##
     ####  ##  ##
     ## ## ##  ##
     ##  ####  ##
     ##   ###  ##
     ##    ##  ##      http://www.neutrino-images.de
            #

Kernel: 4.10.12 #1 SMP Sat Jan 24 05:34:41 CET 2026 @armv7l
Date: Wednesday, 01 July 2026, 22:16:26

e4hdultra.NI-0A2A40 login: root
Password:
/var/root # sc | pzapit -c
reloading channels
[zapit] Loading services, channel size 528 ..
[getservices.cpp:LoadServices:930] Loading satellites...
[getservices.cpp:LoadServices:935] Loading cables...
[getservices.cpp:LoadServices:940] Loading terrestrial...
[getservices.cpp:FindTransponder:636] going to parse dvb-c provider PYUR
[zapit] 395 services loaded (395)...
[zapit] service loading took: 61 msec
[zapit.cpp:PrepareChannels:1245] LoadServices: success
[bouquets.cpp:readEPGMapping:1450] read /var/tuxbox/config/zapit/epgmap.xml
[bouquets.cpp:parseBouquetsXml:421] reading bouquets from /var/tuxbox/config/zap                                                   it/bouquets.xml
[bouquets.cpp:parseBouquetsXml:523] total: 45 bouquets
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/Kodi_Mus                                                   ik.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/iptv_ORF                                                   _und_SRF.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/iptv_Son                                                   stige.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/kodi_XXX                                                   .m3u ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/kodi_spo                                                   rt.m3u ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/kodi_tes                                                   t.m3u ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/userbouq                                                   uet.iptv_xxx.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webtv from /var/tuxbox/webtv/webTV_Sp                                                   ortschau_Streams.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webradio from /var/tuxbox/webradio/we                                                   bradio_usr.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webradio from /var/tuxbox/webradio/ra                                                   dio_sender.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webradio from /usr/share/tuxbox/neutr                                                   ino/webradio/80s80s.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webradio from /usr/share/tuxbox/neutr                                                   ino/webradio/90s90s.xml ...
[bouquets.cpp:loadWebchannels:889] Loading webradio from /usr/share/tuxbox/neutr                                                   ino/webradio/stompfm.xml ...
[bouquets.cpp:parseBouquetsXml:421] reading bouquets from /var/tuxbox/config/zap                                                   it/ubouquets.xml
[bouquets.cpp:parseBouquetsXml:523] total: 96 bouquets
############## CBouquetManager::makeRemainingChannelsBouquet: numbers start at:                                                    tv 1 radio 1 ############
[zapit] bouquet loading took: 48 msec
/tmp/.logo/ffff3344c4eb.de/jepxs: No such file or directory
[zapit] parsing pmt pid 0x13EC (Das Erste HD)
[pmt] found aitpid: 0x492
[subtitles] DVBSub: PID=0x13f1, lang=deu, cpageid=0001, apageid=0001
NeutrinoMessages::EVT_SERVICESCHANGED
/var/root # [neutrino] Creating channels lists...
[neutrino] got 719 TV and 310 RADIO channels
[neutrino] all channels took: 1 msec
[neutrino] curl error: The requested URL returned error: 404 (https://www.stompf                                                   m.de/images/LOGOS/logo_d_2.png)
[neutrino] created PYUR (3841) bouquet with 296 TV and 94 RADIO channels
[neutrino] sat took: 12 msec
[neutrino] got 423 WebTV channels
[neutrino] got 216 WebRadio channels
[neutrino] got 1 new TV channels
[neutrino] got 3 removed TV channels
[neutrino] got 2 removed RADIO channels
[neutrino] sats took: 13 msec
[neutrino] got 38 TV and 20 RADIO bouquets
[neutrino] took: 14 msec
CNeutrinoApp::SetChannelMode 0 [tv]
[neutrino.cpp:SetChannelMode:2542] newmode 0 sort old -1 new 2
[scanepg.cpp:ConfigureEIT:94] added 186 channels to EIT white list
CChannelList::adjustToChannelID me 0xa6e4b0 [Alle Kanäle] list size 719 channel_                                                   id 4011f002f101283d
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
/var/root #
/var/root # connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
Jul  1 22:17:00 e4hdultra cron.info crond[1554]: USER root pid 2329 cmd echo "<-                                                    crond is working ->"
[HAL: 005da298:init  ] [CEC] received message TV to Tuner 1 (0x00>>0x03) 'featur                                                   e abort' ([0x00][0x9E][0x00])
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
[HAL: 005da298:init  ] [CEC] received message TV to Tuner 1 (0x00>>0x03) 'give d                                                   evice power status' ([0x8F])
[HAL: 005da298:init  ] [CEC] send message Tuner 1 to TV (0x03>>0x00) 'report pow                                                   er status' ([0x90][0x00])
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
/var/root #
/var/root # connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
[HAL: 005da298:init  ] [CEC] received message TV to Tuner 1 (0x00>>0x03) 'feature abort' ([0x00][0x9E][0x00])
/var/root #
/var/root # connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
[FCM] - [22:17:44] send query
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
[FCM] - [22:17:46] disable flag /var/etc/.call
2026-07-01 22:17:48.686 [sectionsd] Removed 696 old events (56372 left), zap detected 0.
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
Jul  1 22:18:00 e4hdultra cron.info crond[1554]: USER root pid 2334 cmd echo "<- crond is working ->"
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
[HAL: 005da298:init  ] [CEC] received message TV to Tuner 1 (0x00>>0x03) 'feature abort' ([0x00][0x9E][0x00])
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
[HAL: 005da298:init  ] [CEC] received message TV to Tuner 1 (0x00>>0x03) 'give device power status' ([0x8F])
[HAL: 005da298:init  ] [CEC] send message Tuner 1 to TV (0x03>>0x00) 'report power status' ([0x90][0x00])
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
ShowText 'WebTV'
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect
connect: Connection refused
connect: Connection refused
[FCM] - failed to connect


Benutzeravatar
vanhofen
Administrator
Beiträge: 3146
Registriert: Di 5. Apr 2016, 00:05
Has thanked: 55 times
Been thanked: 93 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von vanhofen »

Gorcon hat geschrieben: Mi 1. Jul 2026, 22:20sc | pzapit -c
:question:

Du leitest die Ausgabe von setconsole zu pzapit um? Was auch immer du dir dabei gedacht hat, es wird nicht funktionieren.
Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

das gibt sowas aus ..

Code: Alles auswählen

[jokel ~]# sc | pzapit -c
reloading channels
[zapit] Loading services, channel size 528 ..
[getservices.cpp:LoadServices:930] Loading satellites...
[getservices.cpp:LoadServices:935] Loading cables...
[getservices.cpp:LoadServices:940] Loading terrestrial...
[getservices.cpp:FindTransponder:636] going to parse dvb-c provider Kabel Deutschland
[zapit] 345 services loaded (345)...
[zapit] service loading took: 102 msec
[zapit.cpp:PrepareChannels:1443] LoadServices: success
[bouquets.cpp:readEPGMapping:1481] read /var/tuxbox/config/zapit/epgmap.xml
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/webtv_usr.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/plutotv_de.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/samsungtvplus_de.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/webtv_orf.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /var/tuxbox/webtv/webtv_srf.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webtv from /usr/share/tuxbox/neutrino/webtv/yt_live.xml ...
[bouquets.cpp:loadWebchannels:916] Loading webradio from /var/tuxbox/webradio/webradio_usr.xml ...
[bouquets.cpp:parseBouquetsXml:440] reading bouquets from /var/tuxbox/config/zapit/ubouquets.xml
[bouquets.cpp:parseBouquetsXml:542] total: 54 bouquets
############## CBouquetManager::makeRemainingChannelsBouquet: numbers start at: tv 1 radio 1 ############
[zapit] bouquet loading took: 47 msec
[zapit] parsing pmt pid 0x17D4 (ZDF HD)
[subtitles] DVBSub: PID=0x17f3, lang=deu, cpageid=0001, apageid=0001
[pmt] found aitpid: 0x181a
NeutrinoMessages::EVT_SERVICESCHANGED
[neutrino] Creating channels lists...
[neutrino] got 586 TV and 142 RADIO channels
[neutrino] all channels took: 1 msec
[jokel ~]# [neutrino] created Kabel Deutschland (3874) bouquet with 204 TV and 141 RADIO channels
[neutrino] sat took: 9 msec
[neutrino] got 382 WebTV channels
[neutrino] got 1 WebRadio channels
[neutrino] sats took: 10 msec
[neutrino] got 48 TV and 3 RADIO bouquets
[neutrino] took: 11 msec
CNeutrinoApp::SetChannelMode 0 [tv]
[neutrino.cpp:SetChannelMode:2555] newmode 0 sort old -1 new 0
CChannelList::adjustToChannelID me 0xf60640 [Alle Kanäle] list size 586 channel_id 5572043700012b66
[HAL: 005ef270:init  ] [CEC] received message TV to Tuner 1 (0x00>>0x03) 'give device power status' ([0x8F])
[HAL: 005ef270:init  ] [CEC] send message Tuner 1 to TV (0x03>>0x00) 'report power status' ([0x90][0x00])
und das sieht besser aus als das ..

Code: Alles auswählen

[jokel ~]# pzapit -c
reloading channels
[jokel ~]# 

Benutzeravatar
Gorcon
NI - VIP
Beiträge: 3153
Registriert: Mi 13. Apr 2016, 10:55
Box: E2HD, VU+ Uno4kSE, VU+ Ultimate4k
Has thanked: 171 times
Been thanked: 47 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von Gorcon »

vanhofen hat geschrieben: Mi 1. Jul 2026, 22:41
Gorcon hat geschrieben: Mi 1. Jul 2026, 22:20sc | pzapit -c
:question:

Du leitest die Ausgabe von setconsole zu pzapit um? Was auch immer du dir dabei gedacht hat, es wird nicht funktionieren.
Ich habe mir da überhaupt nichts gedacht. Was soll ich denn sonst machen?! Es wurde mir doch so vorgeschlagen!
Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

das ist schon so richtig .. da wird nichts umgeleitet .. damit wird die setconsole aktiviert ..
und pzapit -c ausgeführt und weiter nichts .. der vorteil ist ..
das du jetzt siehst was dann passiert .. :wink:
und mit der eingabe von "sr" wieder beendet bzw. deaktiviert ..

zumindest sieht die ausgabe normal aus .. der einzige unterschied zur blauen taste ist ..
das kein epg eingelesen wird mit pzapit -c und deshalb mache ich das wie oben beschrieben ..
i.p. epg :wink:
Benutzeravatar
Gorcon
NI - VIP
Beiträge: 3153
Registriert: Mi 13. Apr 2016, 10:55
Box: E2HD, VU+ Uno4kSE, VU+ Ultimate4k
Has thanked: 171 times
Been thanked: 47 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von Gorcon »

Wie gesagt mit dem EPG habe ich keine Probleme, es sind die Senderlisten die beim hochfahren nicht eingelesen werden obwohl sie auf der Box sind. Der EPG liegt im RAM.
Etwas konnte ich das Problem entschärfen wenn ich statt der Linkverkürzungen direkt die Dropbox Links nutze um die Listen einzulesen.
Ich könnte es auch testen ob es über meine Nextcloud besser geht, denke aber nicht.
pzapit -c ließt die Senderlisten leider nicht ein, aber das hatte ich ja schon mehrfach geschrieben das diese Funktion mir überhaupt nichts bringt.
Benutzeravatar
vanhofen
Administrator
Beiträge: 3146
Registriert: Di 5. Apr 2016, 00:05
Has thanked: 55 times
Been thanked: 93 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von vanhofen »

Wenn ihr Neutrinos Ausgabe sehen wollt, ist

Code: Alles auswählen

sc; pzapit -c; sr
euer Freund.
Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

vanhofen hat geschrieben: Do 2. Jul 2026, 09:16 Wenn ihr Neutrinos Ausgabe sehen wollt, ist

Code: Alles auswählen

sc; pzapit -c; sr
euer Freund.
als admin weiss man sowas .. aber das entscheidende fehlt .. z.b. das ..

Code: Alles auswählen

[neutrino] created Kabel Deutschland (3874) bouquet with 204 TV and 141 RADIO channels
[neutrino] sat took: 13 msec
[neutrino] got 382 WebTV channels
[neutrino] got 1 WebRadio channels
[neutrino] sats took: 14 msec
[neutrino] got 48 TV and 3 RADIO bouquets
[neutrino] took: 15 msec
CNeutrinoApp::SetChannelMode 0 [tv]
und das sehe ich nicht mit ..

Code: Alles auswählen

sc; pzapit -c; sr
nur mit ..

Code: Alles auswählen

sc | pzapit -c
kommt der rest ..
ist zwar bissel doof .. aber sonst sehe ich nicht ob alle meine pferdchen am start sind .. :wink:
Benutzeravatar
jokel
Beiträge: 3092
Registriert: Mi 31. Mär 2021, 14:23
Box: ZGEMMA H7/C
Has thanked: 70 times
Been thanked: 210 times

Re: Timeout beim einlesen der WebTV Senderlisten?

Beitrag von jokel »

nachtrag .. geht doch aber mit ..

Code: Alles auswählen

sc; pzapit -c; sleep 1; sr
perfekt .. :grin:
Antworten

Zurück zu „Neutrino allgemein“