Benutzeravatar
alberttzger
Neuling

Beiträge:4
Registriert:29. Feb 2016
Beruf:Student

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

29. Feb 2016, 21:47

Hallo,
erst ein mal ein großes Lob für die Anleitungen die auf PowerPi zu finden sind... alle sehr ausführlich und nachvollziehbar geschrieben! Nun zu meinem Problem:
Ich habe openELEC bisher auf einer großen µSD (64GB) gehabt, da ich diese noch rumliegen hatte. Auf meinem Pi2 lief openELEC und Hyperion einwandfrei. Als ich dann für die 64GB Karte Verwendung hatte, habe ich mir eine 16GB-Karte gekauft und darauf openELEC installiert. Soweit so gut. Jetzt kommt aber der Haken: Hyperion läuft nicht! Keine einzige LED macht auch nur Anstalten zu leuchten. Wenn ich wie auf der GithHub-Seite von Hyperion (https://github.com/tvdzwan/hyperion/wiki/Installation-on-RPi-with-OpenELEC)beschrieben "/storage/hyperion/bin/hyperion-remote.sh --priority 50 --color red --duration 5000" an den Pi sende bekomme ich folgende Fehlermeldung: "Unable to connect to host". Also gehe ich mal davon aus, dass Hyperion gar nicht erst zum laufen kommt. Auch die Fernsteuerung per App ist dann (logischerweise) nicht möglich. Jetzt wirds (meiner Meinung nach) kurios: Wenn ich das fertige Image (dass ihr freundlicherweise zum Download bereitgestellt habt) auf die SD packe, läuft das Ambilight. Es liegt also (vermutlich) nicht an falsch angeschlossener Hardware. Da ich aber mehr LEDs verwende und diese als RBG_LEDs angesprochen werden müssen, habe ich eine neue .config draufgespielt. Und voilà: Es geht wieder nicht :( .

Die "hyperion.config.json" sieht folgendermaßen aus:

Code: Alles auswählen

// Automatically generated configuration file for 'Hyperion daemon'
// Generated by: HyperCon (The Hyperion deamon configuration file builder

{
   /// Device configuration contains the following fields:
   /// * 'name'       : The user friendly name of the device (only used for display purposes)
   /// * 'type'       : The type of the device or leds (known types for now are 'ws2801', 'ldp8806',
   ///                  'lpd6803', 'sedu', 'adalight', 'lightpack', 'test' and 'none')
   /// * 'output'     : The output specification depends on selected device. This can for example be the
   ///                  device specifier, device serial number, or the output file name
   /// * 'rate'       : The baudrate of the output to the device
   /// * 'colorOrder' : The order of the color bytes ('rgb', 'rbg', 'bgr', etc.).
   "device" :
   {
      "name"       : "MyPi",
      "type"       : "ws2801",
      "output"     : "/dev/spidev0.0",
      "rate"       : 250000,
      "colorOrder" : "rbg"
   },

   /// Color manipulation configuration used to tune the output colors to specific surroundings.
   /// The configuration contains a list of color-transforms. Each transform contains the
   /// following fields:
   ///  * 'id'   : The unique identifier of the color transformation (eg 'device_1')   ///  * 'leds' : The indices (or index ranges) of the leds to which this color transform applies
   ///             (eg '0-5, 9, 11, 12-17'). The indices are zero based.   ///  * 'hsv' : The manipulation in the Hue-Saturation-Value color domain with the following
   ///            tuning parameters:
   ///            - 'saturationGain'  The gain adjustement of the saturation
   ///            - 'valueGain'       The gain adjustement of the value
   ///  * 'red'/'green'/'blue' : The manipulation in the Red-Green-Blue color domain with the
   ///                           following tuning parameters for each channel:
   ///            - 'threshold'       The minimum required input value for the channel to be on
   ///                                (else zero)
   ///            - 'gamma'           The gamma-curve correction factor
   ///            - 'blacklevel'      The lowest possible value (when the channel is black)
   ///            - 'whitelevel'      The highest possible value (when the channel is white)
   ///
   /// Next to the list with color transforms there is also a smoothing option.
   ///  * 'smoothing' : Smoothing of the colors in the time-domain with the following tuning
   ///                  parameters:
   ///            - 'type'            The type of smoothing algorithm ('linear' or 'none')
   ///            - 'time_ms'         The time constant for smoothing algorithm in milliseconds
   ///            - 'updateFrequency' The update frequency of the leds in Hz
   "color" :
   {
      "transform" :
      [
         {
            "id"   : "default",
            "leds" : "*",
            "hsv" :
            {
               "saturationGain" : 1.4000,
               "valueGain"      : 2.3500
            },
            "red" :
            {
               "threshold"  : 0.0000,
               "gamma"      : 1.2400,
               "blacklevel" : 0.0000,
               "whitelevel" : 0.4500
            },
            "green" :
            {
               "threshold"  : 0.0000,
               "gamma"      : 1.6500,
               "blacklevel" : 0.0000,
               "whitelevel" : 1.0000
            },
            "blue" :
            {
               "threshold"  : 0.0000,
               "gamma"      : 1.3300,
               "blacklevel" : 0.0000,
               "whitelevel" : 0.2600
            }
         }
      ],
      "smoothing" :
      {
         "type"            : "linear",
         "time_ms"         : 200,
         "updateFrequency" : 25.0000
      }
   },

   ///  The configuration for each individual led. This contains the specification of the area
   ///  averaged of an input image for each led to determine its color. Each item in the list
   ///  contains the following fields:
   ///  * index: The index of the led. This determines its location in the string of leds; zero
   ///           being the first led.
   ///  * hscan: The fractional part of the image along the horizontal used for the averaging
   ///           (minimum and maximum inclusive)
   ///  * vscan: The fractional part of the image along the vertical used for the averaging
   ///           (minimum and maximum inclusive)
   "leds" :
   [
      {
         "index" : 0,
         "hscan" : { "minimum" : 0.0021, "maximum" : 0.0336 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 1,
         "hscan" : { "minimum" : 0.0379, "maximum" : 0.0693 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 2,
         "hscan" : { "minimum" : 0.0736, "maximum" : 0.1050 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 3,
         "hscan" : { "minimum" : 0.1093, "maximum" : 0.1407 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 4,
         "hscan" : { "minimum" : 0.1450, "maximum" : 0.1764 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 5,
         "hscan" : { "minimum" : 0.1807, "maximum" : 0.2121 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 6,
         "hscan" : { "minimum" : 0.2164, "maximum" : 0.2479 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 7,
         "hscan" : { "minimum" : 0.2521, "maximum" : 0.2836 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 8,
         "hscan" : { "minimum" : 0.2879, "maximum" : 0.3193 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 9,
         "hscan" : { "minimum" : 0.3236, "maximum" : 0.3550 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 10,
         "hscan" : { "minimum" : 0.3593, "maximum" : 0.3907 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 11,
         "hscan" : { "minimum" : 0.3950, "maximum" : 0.4264 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 12,
         "hscan" : { "minimum" : 0.4307, "maximum" : 0.4621 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 13,
         "hscan" : { "minimum" : 0.4664, "maximum" : 0.4979 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 14,
         "hscan" : { "minimum" : 0.5021, "maximum" : 0.5336 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 15,
         "hscan" : { "minimum" : 0.5379, "maximum" : 0.5693 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 16,
         "hscan" : { "minimum" : 0.5736, "maximum" : 0.6050 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 17,
         "hscan" : { "minimum" : 0.6093, "maximum" : 0.6407 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 18,
         "hscan" : { "minimum" : 0.6450, "maximum" : 0.6764 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 19,
         "hscan" : { "minimum" : 0.6807, "maximum" : 0.7121 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 20,
         "hscan" : { "minimum" : 0.7164, "maximum" : 0.7479 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 21,
         "hscan" : { "minimum" : 0.7521, "maximum" : 0.7836 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 22,
         "hscan" : { "minimum" : 0.7879, "maximum" : 0.8193 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 23,
         "hscan" : { "minimum" : 0.8236, "maximum" : 0.8550 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 24,
         "hscan" : { "minimum" : 0.8593, "maximum" : 0.8907 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 25,
         "hscan" : { "minimum" : 0.8950, "maximum" : 0.9264 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 26,
         "hscan" : { "minimum" : 0.9307, "maximum" : 0.9621 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 27,
         "hscan" : { "minimum" : 0.9664, "maximum" : 0.9979 },
         "vscan" : { "minimum" : 0.9700, "maximum" : 1.0000 }
      },
      {
         "index" : 28,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.9373, "maximum" : 0.9960 }
      },
      {
         "index" : 29,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.8707, "maximum" : 0.9293 }
      },
      {
         "index" : 30,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.8040, "maximum" : 0.8627 }
      },
      {
         "index" : 31,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.7373, "maximum" : 0.7960 }
      },
      {
         "index" : 32,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.6707, "maximum" : 0.7293 }
      },
      {
         "index" : 33,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.6040, "maximum" : 0.6627 }
      },
      {
         "index" : 34,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.5373, "maximum" : 0.5960 }
      },
      {
         "index" : 35,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.4707, "maximum" : 0.5293 }
      },
      {
         "index" : 36,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.4040, "maximum" : 0.4627 }
      },
      {
         "index" : 37,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.3373, "maximum" : 0.3960 }
      },
      {
         "index" : 38,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.2707, "maximum" : 0.3293 }
      },
      {
         "index" : 39,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.2040, "maximum" : 0.2627 }
      },
      {
         "index" : 40,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.1373, "maximum" : 0.1960 }
      },
      {
         "index" : 41,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.0707, "maximum" : 0.1293 }
      },
      {
         "index" : 42,
         "hscan" : { "minimum" : 0.9800, "maximum" : 1.0000 },
         "vscan" : { "minimum" : 0.0040, "maximum" : 0.0627 }
      },
      {
         "index" : 43,
         "hscan" : { "minimum" : 0.9664, "maximum" : 0.9979 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 44,
         "hscan" : { "minimum" : 0.9307, "maximum" : 0.9621 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 45,
         "hscan" : { "minimum" : 0.8950, "maximum" : 0.9264 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 46,
         "hscan" : { "minimum" : 0.8593, "maximum" : 0.8907 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 47,
         "hscan" : { "minimum" : 0.8236, "maximum" : 0.8550 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 48,
         "hscan" : { "minimum" : 0.7879, "maximum" : 0.8193 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 49,
         "hscan" : { "minimum" : 0.7521, "maximum" : 0.7836 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 50,
         "hscan" : { "minimum" : 0.7164, "maximum" : 0.7479 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 51,
         "hscan" : { "minimum" : 0.6807, "maximum" : 0.7121 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 52,
         "hscan" : { "minimum" : 0.6450, "maximum" : 0.6764 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 53,
         "hscan" : { "minimum" : 0.6093, "maximum" : 0.6407 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 54,
         "hscan" : { "minimum" : 0.5736, "maximum" : 0.6050 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 55,
         "hscan" : { "minimum" : 0.5379, "maximum" : 0.5693 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 56,
         "hscan" : { "minimum" : 0.5021, "maximum" : 0.5336 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 57,
         "hscan" : { "minimum" : 0.4664, "maximum" : 0.4979 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 58,
         "hscan" : { "minimum" : 0.4307, "maximum" : 0.4621 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 59,
         "hscan" : { "minimum" : 0.3950, "maximum" : 0.4264 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 60,
         "hscan" : { "minimum" : 0.3593, "maximum" : 0.3907 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 61,
         "hscan" : { "minimum" : 0.3236, "maximum" : 0.3550 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 62,
         "hscan" : { "minimum" : 0.2879, "maximum" : 0.3193 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 63,
         "hscan" : { "minimum" : 0.2521, "maximum" : 0.2836 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 64,
         "hscan" : { "minimum" : 0.2164, "maximum" : 0.2479 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 65,
         "hscan" : { "minimum" : 0.1807, "maximum" : 0.2121 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 66,
         "hscan" : { "minimum" : 0.1450, "maximum" : 0.1764 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 67,
         "hscan" : { "minimum" : 0.1093, "maximum" : 0.1407 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 68,
         "hscan" : { "minimum" : 0.0736, "maximum" : 0.1050 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 69,
         "hscan" : { "minimum" : 0.0379, "maximum" : 0.0693 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 70,
         "hscan" : { "minimum" : 0.0021, "maximum" : 0.0336 },
         "vscan" : { "minimum" : 0.0000, "maximum" : 0.0300 }
      },
      {
         "index" : 71,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.0040, "maximum" : 0.0627 }
      },
      {
         "index" : 72,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.0707, "maximum" : 0.1293 }
      },
      {
         "index" : 73,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.1373, "maximum" : 0.1960 }
      },
      {
         "index" : 74,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.2040, "maximum" : 0.2627 }
      },
      {
         "index" : 75,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.2707, "maximum" : 0.3293 }
      },
      {
         "index" : 76,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.3373, "maximum" : 0.3960 }
      },
      {
         "index" : 77,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.4040, "maximum" : 0.4627 }
      },
      {
         "index" : 78,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.4707, "maximum" : 0.5293 }
      },
      {
         "index" : 79,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.5373, "maximum" : 0.5960 }
      },
      {
         "index" : 80,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.6040, "maximum" : 0.6627 }
      },
      {
         "index" : 81,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.6707, "maximum" : 0.7293 }
      },
      {
         "index" : 82,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.7373, "maximum" : 0.7960 }
      },
      {
         "index" : 83,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.8040, "maximum" : 0.8627 }
      },
      {
         "index" : 84,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.8707, "maximum" : 0.9293 }
      },
      {
         "index" : 85,
         "hscan" : { "minimum" : 0.0000, "maximum" : 0.0200 },
         "vscan" : { "minimum" : 0.9373, "maximum" : 0.9960 }
      }
   ],

   /// The black border configuration, contains the following items:
   ///  * enable    : true if the detector should be activated
   ///  * threshold : Value below which a pixel is regarded as black (value between 0.0 and 1.0)
   "blackborderdetector" :
   {
      "enable" : true,
      "threshold" : 0.01
   },

   /// The configuration of the effect engine, contains the following items:
   ///  * paths        : An array with absolute location(s) of directories with effects
   ///  * bootsequence : The effect selected as 'boot sequence'
   "effects" :
   {
      "paths" :
      [
         "/storage/hyperion/effects"
      ]
   },

   "bootsequence" :
   {
      "effect" : "Snake",
      "duration_ms" : 3000
   },

   ///  The configuration for the frame-grabber, contains the following items:
   ///   * width        : The width of the grabbed frames [pixels]
   ///   * height       : The height of the grabbed frames [pixels]
   ///   * frequency_Hz : The frequency of the frame grab [Hz]
   "framegrabber" :
   {
      "width" : 64,
      "height" : 64,
      "frequency_Hz" : 10.0
   },

   /// The configuration of the XBMC connection used to enable and disable the frame-grabber. Contains the following fields:
   ///  * xbmcAddress       : The IP address of the XBMC-host
   ///  * xbmcTcpPort       : The TCP-port of the XBMC-server
   ///  * grabVideo         : Flag indicating that the frame-grabber is on(true) during video playback
   ///  * grabPictures      : Flag indicating that the frame-grabber is on(true) during picture show
   ///  * grabAudio         : Flag indicating that the frame-grabber is on(true) during audio playback
   ///  * grabMenu          : Flag indicating that the frame-grabber is on(true) in the XBMC menu
   ///  * grabScreensaver   : Flag indicating that the frame-grabber is on(true) when XBMC is on screensaver
   ///  * enable3DDetection : Flag indicating that the frame-grabber should switch to a 3D compatible modus if a 3D video is playing
   "xbmcVideoChecker" :
   {
      "xbmcAddress" : "127.0.0.1",
      "xbmcTcpPort" : 9090,
      "grabVideo" : true,
      "grabPictures" : true,
      "grabAudio" : true,
      "grabMenu" : true,
      "grabScreensaver" : true,
      "enable3DDetection" : true
   },

   /// The configuration of the Json server which enables the json remote interface
   ///  * port : Port at which the json server is started
   "jsonServer" :
   {
      "port" : 19444
   },

   /// The configuration of the Proto server which enables the protobuffer remote interface
   ///  * port : Port at which the protobuffer server is started
   "protoServer" :
   {
      "port" : 19444
   },

   /// The configuration of the boblight server which enables the boblight remote interface
   ///  * port : Port at which the boblight server is started
//    "boblightServer" :
//    {
//       "port" : 19444
//    },

   "endOfJson" : "endOfJson"
}


Hier noch die Screenshots des Konfigurationstools:

Hyperion.JPG

Hyperion3.JPG

Hyperion2.JPG


Vielen Dank im Voraus,

Albert

Danny08
Mitglied

Beiträge:50
Registriert:9. Feb 2016

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

29. Feb 2016, 23:19

Alles neuinstalliert oder simpel kopiert?
Gibt viele unsichtbare Dateien etc.
Entweder vernünftig über Linux Shell kopieren oder alles neuinstallieren.
Configs etc kann man übernehmen

alberttzger
Neuling

Beiträge:4
Registriert:29. Feb 2016
Beruf:Student

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

29. Feb 2016, 23:30

Danke für die schnelle Antwort! Ich habe auf die neue μSD alles komplett neu installiert. Die .config wurde über das Konfigurationstool generiert und direkt (übers Netzwerk) im Configfiles Ordner gespeichert.
Ich hoffe du hast erfahren was du wissen wolltest.

MfG,
Albert

digital.arts
Mitglied

Beiträge:144
Registriert:17. Nov 2015
Wohnort:Bayern
Beruf:Admin

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

29. Feb 2016, 23:37

Vermutlich in der config.txt vergessen, die spi zu aktivieren...

alberttzger
Neuling

Beiträge:4
Registriert:29. Feb 2016
Beruf:Student

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

29. Feb 2016, 23:43

digital.arts hat geschrieben:Vermutlich in der config.txt vergessen, die spi zu aktivieren...

Ich wünschte es wäre so. Ich habe beim ersten Versuch das SPI in der config.txt aktiviert. Und in dem SD-Karten-Image von PowerPi wurde das SPI bereits aktiviert. Es lief ja auch..bis ich meine .config draufspiele.. Trotzdem danke für die Antwort.

Danny08
Mitglied

Beiträge:50
Registriert:9. Feb 2016

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

1. Mär 2016, 10:53

Hyperion reagiert aber anscheinend nicht.
Nutz mal das update Script für hyperion
Ansonsten auch mal die alte config testen?

Und mit der neuen hypercon Version arbeiten.
Aki hat nur die veralteten Sachen im tut

diablo2friend
Mitglied

Beiträge:22
Registriert:19. Feb 2016

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

1. Mär 2016, 12:30

Ich hab gerade mal die config durchgescrollt, und hab mich vorher noch nicht mit Hyperion beschäftigt, aber ganz am Ende werden 2 Server an Ports gebunden, meinem Verständnis nach (komme aus der Administration) sollten die beiden Ports unterschiedlich sein, weil das zu Konflikten führt...

Da könnte auch das "nicht reagieren" von Hyperion herrühren.. du schreibst ja selbst, er kann nicht zum host connecten...

Danny08
Mitglied

Beiträge:50
Registriert:9. Feb 2016

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

1. Mär 2016, 14:15

diablo2friend hat geschrieben:Ich hab gerade mal die config durchgescrollt, und hab mich vorher noch nicht mit Hyperion beschäftigt, aber ganz am Ende werden 2 Server an Ports gebunden, meinem Verständnis nach (komme aus der Administration) sollten die beiden Ports unterschiedlich sein, weil das zu Konflikten führt...

Da könnte auch das "nicht reagieren" von Hyperion herrühren.. du schreibst ja selbst, er kann nicht zum host connecten...

Jap, hab mir das garnicht angesehen.
Selbstverständlich brauch hyperion zwei verschiedene Ports!
Also den proto +1 stellen dann sollte es laufen

alberttzger
Neuling

Beiträge:4
Registriert:29. Feb 2016
Beruf:Student

Hyperion läuft nach Aufspielen von neuer .config nicht mehr

1. Mär 2016, 14:33

diablo2friend hat geschrieben:Ich hab gerade mal die config durchgescrollt, und hab mich vorher noch nicht mit Hyperion beschäftigt, aber ganz am Ende werden 2 Server an Ports gebunden, meinem Verständnis nach (komme aus der Administration) sollten die beiden Ports unterschiedlich sein, weil das zu Konflikten führt...

Da könnte auch das "nicht reagieren" von Hyperion herrühren.. du schreibst ja selbst, er kann nicht zum host connecten...


Das es zwei unterschiedliche Ports sein sollten macht Sinn. Hab ich gar nicht bemerkt :oops: . Ich habe die Ports also geändert und voilà: Es läuft und läuft und läuft.. 8-) ! Vielen Dank für die schnelle und sehr hilfreiche Antwort!

Zurück zu „Ambilight - Support“