Seite 16 von 25 ErsteErste ... 61415161718 ... LetzteLetzte
Ergebnis 151 bis 160 von 241

Thema: Image online

  1. #151
    Boardgründer/Administrator Avatar von bonkel
    Registriert seit
    03.05.2012
    Beiträge
    8.468
    Thanks
    509
    Thanked 4.504 Times in 1.979 Posts
    neustes image schon getestet?

    Gehasst, Verdammt, Vergöttert
    Fragen gehören ins Forum nicht in meinem Postfach!
    >> Häufig gestellte Fragen <<


  2. #152
    Erfahrener Benutzer
    Registriert seit
    15.12.2012
    Beiträge
    183
    Thanks
    176
    Thanked 80 Times in 56 Posts
    Zitat Zitat von bonkel Beitrag anzeigen
    neustes image schon getestet?
    Yes ... it works [12316 oe 1344]!

    I could not try everything on AZ Ultra HD version ...

    I had some trouble finding the right combination for the frequency of the card reader with oscam8837 and TivuSat N3 card (the only combination that works is cardmhz = 368 mhz = 500) while other from feed:ymod not SC init, 3c ok (always) ... but the ecm time is up approximately 650 ms and occasionally produces video freeze!

    The zap time (approximately):

    crypt to crypt = 6 s
    crypt to fta = 3 s
    fta to fta = 2 s

    - HDMU Media Center = OK [AVI-MKV-Mp3 simple file play test] and TS play from CIFS Net Mount VodafoneTV(DVB-T) recordings storage device !

    Ciao & Thanks
    Geändert von arci (23.04.2014 um 15:48 Uhr)


  3. #153
    VIP Avatar von macmanolo
    Registriert seit
    29.09.2012
    Ort
    Spanien
    Beiträge
    427
    Thanks
    115
    Thanked 168 Times in 110 Posts
    Ja, heute kurzt image "HDMU_12302_AzboxHD_OE_1343_Flash" getestet und alles was ich normaleweise benutze leuft wie es sein sollte, für mich nach der "HDMU_11893_AzboxHD_OE_858_Flash" das beste image.

    mfg.

    PD. habe gesehen das es wieder eine neuer imege giebst werde es gleich mal einspielen und zur sehen wie dieses leuft.

    PD2. Online update gemacht und alles leuft weiter so gut wie vorher...


  4. #154
    Benutzer
    Registriert seit
    27.01.2014
    Beiträge
    36
    Thanks
    0
    Thanked 1 Time in 1 Post
    HDMU_12316_AzboxHD_OE_1344_Flash.zip WIfI NOT OK
    HDMU_12302_AzboxHD_OE_1343_Flash.zip WiFi not OK

    Can't Connect to the Internet



  5. #155
    Boardgründer/Administrator Avatar von bonkel
    Registriert seit
    03.05.2012
    Beiträge
    8.468
    Thanks
    509
    Thanked 4.504 Times in 1.979 Posts
    nothing changed with wifi..

    Gehasst, Verdammt, Vergöttert
    Fragen gehören ins Forum nicht in meinem Postfach!
    >> Häufig gestellte Fragen <<


  6. #156
    Benutzer
    Registriert seit
    27.01.2014
    Beiträge
    36
    Thanks
    0
    Thanked 1 Time in 1 Post
    Could not connect to the router. Version 851 is ok. Keymap for audio subtitle fix is stil required, hooked him
    Angehängte Dateien Angehängte Dateien

  7. The Following User Says Thank You to sofrenic For This Useful Post:



  8. #157
    Benutzer Avatar von blueice_haller
    Registriert seit
    10.02.2013
    Beiträge
    60
    Thanks
    47
    Thanked 4 Times in 4 Posts

    Frage

    I was wondering that after installing RTi-SYS Plugin I can't control the fan of my premium+ (Open Webif > Receiver-Informationen > Modell).
    I'm new in developing python plugins and studied the code from RTi-SYS https://github.com/OpenAZBox/RTi-SYS.

    In lines 307, 431, 446 and 575 of https://github.com/OpenAZBox/RTi-SYS...ster/plugin.py it tries to determine and assign the model type. Example line 307:
    Code:
    hw_type = HardwareInfo().get_device_name()
    if hw_type == "me" or hw_type == "minime" :
    	self.LEDtimeTimer.callback.append(self.updateLED)
    	if hw_type == "minime" :
    		self.RtiminimeTimer.callback.append(self.updateCR)
    elif hw_type == 'elite' or hw_type == 'premium' or hw_type == 'premium+' or hw_type == 'ultra' :
    	self.LEDtimeTimer.callback.append(self.updateLEDHD)
    if hw_type == 'ultra' or hw_type == 'premium+':
    	self.FANtimeTimer.callback.append(self.updateFAN)
    This is later important to get the correct entries in Einstellungen > System > ...
    Code:
    def Plugins(**kwargs):
    	hw_type = HardwareInfo().get_device_name()
    	if hw_type == 'ultra' or hw_type == 'premium+':
    		return [
    			PluginDescriptor(name="FanCtrl", description="FAN Controll", where = PluginDescriptor.WHERE_MENU, fnc=startSetup),
    			PluginDescriptor(name="AVp_setup", description="scan mode & interlaced algo", where = PluginDescriptor.WHERE_MENU, fnc=startSetup2),
    			PluginDescriptor(where=[PluginDescriptor.WHERE_SESSIONSTART], fnc=sessionstart)
    			]
    	elif hw_type == 'minime':
    		return [
    			PluginDescriptor(name="CRClock_setup", description="CR set freq", where = PluginDescriptor.WHERE_MENU, fnc=startSetup1),
    			PluginDescriptor(name="AVp_setup", description="scan mode & interlaced algo", where = PluginDescriptor.WHERE_MENU, fnc=startSetup2),
    			PluginDescriptor(where=[PluginDescriptor.WHERE_SESSIONSTART], fnc=sessionstart)
    			]
    	else:
    		return [
    			PluginDescriptor(name="AVp_setup", description="scan mode & interlaced algo", where = PluginDescriptor.WHERE_MENU, fnc=startSetup2),
    			PluginDescriptor(where=[PluginDescriptor.WHERE_SESSIONSTART], fnc=sessionstart)
    			]
    Because I only get the [A/V settings +] entry something went wrong: I think that it runs in the last else in line 588.

    Because I dont't know where to find the missing function HardwareInfo(): hw_type = HardwareInfo().get_device_name() I easily assign it manually to hw_type = premium+ 4 times in the lines 307, 431, 446 and 575.
    Does anybody know an alternative to determine this? Which function does Open Webif use to determines it?

    And yes, if I change the code, delete the plugin.pyo and restart the box I have also the entry [Fan Set] in OSD and can change anything.

    I have tested it and it works.

    That what I heard then was the HDD (ST3500630AS) which goes in standby after some minutes with my init-script.[/B]
    Geändert von blueice_haller (14.08.2014 um 21:12 Uhr)
    MFG blueice_haller | Kabel / 19,2° / 28,2°

    Octagon SF1028P (AT7500), Audioniek rev1364 @ Kingston DTMCK 8GB
    AzBoxHD, HDMU 12411 OE 1439 Flash @ DeLock 2GB DOM
    2x Golden Interstar Xpeed LX3, openATV

    Plugins: epgsearch, fritzcall, mediaportal, webradioFS, metrixhd, skins-mymetrix, rtmpdump, werbezapper
    Senderliste: DreamBox Edit
    Android: DreamDroid

    Plugins früher getestet: dreamexplorer, mediainfo, partnerbox, sambaserver, iptv updater, network-dropbear, emc, foreca, shoutcast, wiki


  9. #158
    Moderator Avatar von morly
    Registriert seit
    15.07.2012
    Ort
    Österreich
    Beiträge
    6.684
    Thanks
    789
    Thanked 2.764 Times in 1.357 Posts
    Brauch kurze Hilfe,
    das Image besteht aus cram.img und kernel.img
    Wie können die auf welche Partition geflasht werden (via telnet)??
    Wohl besser nicht via dd, oder?
    "Every Setback is a Set Up for a Comeback"


  10. #159
    VIP Avatar von macmanolo
    Registriert seit
    29.09.2012
    Ort
    Spanien
    Beiträge
    427
    Thanks
    115
    Thanked 168 Times in 110 Posts
    Wird nomaleweise mit en eigenes program geflash "AzUp 2.2.7" ist ein windows program :-( früer gabs einen in java aber der funzioniert jetz nicht mehr?

    mfg


  11. #160
    Moderator Avatar von morly
    Registriert seit
    15.07.2012
    Ort
    Österreich
    Beiträge
    6.684
    Thanks
    789
    Thanked 2.764 Times in 1.357 Posts
    hab ja das Ding entpackt und die beiden Files liegen, muss nur wissen welches mtd wofür ist (vermute kernel=mtd4 und rootfs=mtd0)
    "Every Setback is a Set Up for a Comeback"


Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •