Benutzeravatar
scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 10:58

Hallo...

ich hab ein großes Problem mit meinem Ambilight das mich langsam echt zum Verzweifeln bringt.
Es hat mich schon Nächte gekostet den Fehler irgendwie einzugrenzen aber jetzt komm ich einfach nicht mehr weiter.


Um das Problem einzugrenzen kann ich mit Sicherheit sagen, dass es zu nur Problemen kommt sobald ich versuche das Ambilight über eine Externe Hdmi Quelle zu betreiben.

Wenn ich den Pi direkt über den Fernseher laufen lasse kommt es zu keinem Fehler.
Das Bild ist in Ordnung und die Testvideos sowie Farbmuster werden vom Ambilight korrekt dargestellt.
(Feintuning hab ich hier noch nicht durchgeführt da es ja über Externe Quellen nicht läuft).

Nun aber zu meinem Fehler.

Sobald ich die Kabel umstecke kommt es dazu, dass die Leds flackern.
Dieses Verhalten ist besonders gut bei schwarzen Stellen zu beobachten.
Auch wenn ich Testbilder ansteuere z.B. komplett Rot kommt es immer wieder zu Farbwechseln (meistens 0,5 -1 Sekunde von Gelb oder Blau).

Bei einem komplett weißen oder schwarzen Bild kommt es immer wieder zum flackern/zittern der Leds.

Ich kann das über Fotos leider nur sehr schwer einfangen.

Da der Fehler intern nicht vorhanden ist gehe ich nicht von eimem Löt Fehler vom Pi zum Led Streifen aus.
Des Weiteren kann ich doch auch ausschließen das das Netzteil zu schwach ist ?

Könnt Ihr mir vielleicht weiterhelfen ich bin langsam echt am Verzweifeln und hätte aktuell nur noch die Idee, dass irgend ein Bauteil kaputt ist :cry:

Vielen Dank für Eure Hilfe.

Ich hab mich beim Kauf der Teile direkt an die Anleitung gehalten und folgende Teile gekauft:

http://www.amazon.de/gp/product/B0013BX ... g=pow07-21

http://www.amazon.de/gp/product/B01AG0M ... g=pow07-21

http://www.amazon.de/gp/product/B01615J ... g=pow07-21

Meine .json Datei für den Externen Grabber ist folgende:

Code: Alles auswählen

{
   /// 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
   /// ---------SPI---------, APA102, WS2801, P9813, LPD6803, LPD8806, ---------PWM---------, WS2812b (just RPi1), WS281X (RPi1, RPi2, RPi3), --------OTHER--------, PhilipsHUE, AtmoOrb, PiBlaster, Tinkerforge, UDP, FadeCandy, SEDU, TPM2, USBASP-WS2801, USBASP-WS2812, ------3rd PARTY------, Adalight, AdalightAPA102, AmbiLed, Atmo, Lightpack, Multi-Lightpack, Paintpack, Test (file), None)
   /// * [device type specific configuration]
   /// * 'colorOrder' : The order of the color bytes ('rgb', 'rbg', 'bgr', etc.).
   "device" :
   {
      "name"       : "MyPi",
      "type"       : "ws2801",
      "output"     : "/dev/spidev0.0",
      "rate"     : 1000000,
      "colorOrder" : "rgb"
   },

   /// 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
   ///            - 'updateDelay'     The delay of the output to leds (in periods of smoothing)
   "color" :
   {
      "correction" :
      [
         {
            "id"   : "default",
            "leds" : "*",
            "correctionValues" :
            {
               "red"    : 255,
               "green"   : 255,
               "blue"    : 255
            }
         }
      ],
      "temperature" :
      [
         {
            "id"   : "default",
            "leds" : "*",
            "temperatureValues" :
            {
               "red"    : 255,
               "green"   : 255,
               "blue"    : 255
            }
         }
      ],
      "transform" :
      [
         {
            "id"   : "default",
            "leds" : "*",
            "hsv" :
            {
               "saturationGain"   : 1.0000,
               "valueGain"      : 1.0000
            },
            "hsl" :
            {
               "saturationGain"   : 1.0000,
               "luminanceGain"   : 1.0000
            },
            "red" :
            {
               "threshold"    : 0.0000,
               "gamma"        : 1.0000,
               "blacklevel"   : 0.0000,
               "whitelevel"   : 1.0000
            },
            "green" :
            {
               "threshold"    : 0.0000,
               "gamma"        : 1.0000,
               "blacklevel"   : 0.0000,
               "whitelevel"   : 1.0000
            },
            "blue" :
            {
               "threshold"    : 0.0000,
               "gamma"        : 1.0000,
               "blacklevel"   : 0.0000,
               "whitelevel"   : 1.0000
            }
         }
      ],

      "smoothing" :
      {
         "type"            : "linear",
         "time_ms"         : 200,
         "updateFrequency" : 20.0000,
         "updateDelay"     : 0
      }
   },

   /// 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)
   ///  * unknownFrameCnt      : Number of frames without any detection before the border is set to 0 (default 600)
   ///  * borderFrameCnt      : Number of frames before a consistent detected border gets set (default 50)
   ///  * maxInconsistentCnt    : Number of inconsistent frames that are ignored before a new border gets a chance to proof consistency
   ///  * blurRemoveCnt      : Number of pixels that get removed from the detected border to cut away blur (default 1)
   ///  * mode             : Border detection mode (values=default,classic,osd)
   "blackborderdetector" :
   {
      "enable" : true,
      "threshold" : 0.14,
      "unknownFrameCnt" : 600,
      "borderFrameCnt" : 50,
      "maxInconsistentCnt" : 10,
      "blurRemoveCnt" : 1,
      "mode" : "default"
   },

   /// The configuration of the effect engine, contains the following items:
   ///  * paths      : An array with absolute location(s) of directories with effects
   ///  * color       : Set static color after boot -> set effect to "" (empty) and input the values [R,G,B] and set duration_ms NOT to 0 (use 1) instead
   ///  * effect       : The effect selected as 'boot sequence'
   ///  * duration_ms   : The duration of the selected effect (0=endless)
   ///  * priority    : The priority of the selected effect/static color (default=990) HINT: lower value result in HIGHER priority!
   "effects" :
   {
      "paths" :
      [
         "/opt/hyperion/effects"
      ]
   },

   "bootsequence" :
   {
      "color" : [0,0,0],
      "effect" : "Rainbow swirl fast",
      "duration_ms" : 3000,
      "priority" : 990
   },

   /// The configuration of the Json/Proto forwarder. Forward messages to multiple instances of Hyperion on same and/or other hosts
   /// 'proto' is mostly used for video streams and 'json' for effects
   ///  * proto   : Proto server adress and port of your target. Syntax:[IP:PORT] -> ["127.0.0.1:19447"] or more instances to forward ["127.0.0.1:19447","192.168.0.24:19449"]
   ///  * json   : Json server adress and port of your target. Syntax:[IP:PORT] -> ["127.0.0.1:19446"] or more instances to forward ["127.0.0.1:19446","192.168.0.24:19448"]
   ///  HINT:   If you redirect to "127.0.0.1" (localhost) you could start a second hyperion with another device/led config!
   ///       Be sure your client(s) is/are listening on the configured ports. The second Hyperion (if used) also needs to be configured! (HyperCon -> External -> Json Server/Proto Server)
//    "forwarder" :
//    {
//       "proto" : ["127.0.0.1:19447"],
//       "json" : ["127.0.0.1:19446"]
//    },

   ///  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]
   ///   * priority     : The priority of the frame-gabber (Default=890) HINT: lower value result in HIGHER priority!
   ///   * ATTENTION    : Power-of-Two resolution is not supported and leads to unexpected behaviour!
//    "framegrabber" :
//    {
//       "width" : 80,
//       "height" : 45,
//       "frequency_Hz" : 10.0,
//       "priority" : 900
//    },

   /// The configuration of the Kodi connection used to enable and disable the frame-grabber. Contains the following fields:
   ///  * xbmcAddress       : The IP address of the Kodi-host
   ///  * xbmcTcpPort       : The TCP-port of the Kodi-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) at the Kodi menu
   ///  * grabScreensaver   : Flag indicating that the frame-grabber is on(true) when Kodi 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" : false,
//       "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" : 19445
   },

   /// The configuration of the boblight server which enables the boblight remote interface
   ///  * port    : Port at which the boblight server is started
   ///  * priority: Priority of the boblight server (Default=900) HINT: lower value result in HIGHER priority!
//    "boblightServer" :
//    {
//       "port" : 19333,
//       "priority" : 900
//    },

   /// Configuration for the embedded V4L2 grabber
   ///  * device          : V4L2 Device to use [default="/dev/video0"]
   ///  * input           : V4L2 input to use [default=0]
   ///  * standard        : Video standard (no-change/PAL/NTSC) [default="no-change"]
   ///  * width                : V4L2 width to set [default=-1]
   ///  * height               : V4L2 height to set [default=-1]
   ///  * frameDecimation      : Frame decimation factor [default=2]
   ///  * sizeDecimation       : Size decimation factor [default=8]
   ///  * priority             : Hyperion priority channel [default=900]
   ///  * mode                 : 3D mode to use 2D/3DSBS/3DTAB (note: no autodetection) [default="2D"]
   ///  * cropLeft             : Cropping from the left [default=0]
   ///  * cropRight            : Cropping from the right [default=0]
   ///  * cropTop              : Cropping from the top [default=0]
   ///  * cropBottom           : Cropping from the bottom [default=0]
   ///  * redSignalThreshold   : Signal threshold for the red channel between 0.0 and 1.0 [default=0.0]
   ///  * greenSignalThreshold : Signal threshold for the green channel between 0.0 and 1.0 [default=0.0]
   ///  * blueSignalThreshold  : Signal threshold for the blue channel between 0.0 and 1.0 [default=0.0]
   "grabber-v4l2" :
    {
        "device" : "/dev/video0",
        "input" : 0,
        "standard" : "NTSC",
        "width" : -1,
        "height" : -1,
        "frameDecimation" : 2,
        "sizeDecimation" : 4,
        "priority" : 800,
        "mode" : "2D",
        "cropLeft" : 6,
        "cropRight" : 6,
        "cropTop" : 2,
        "cropBottom" : 2,
        "redSignalThreshold" : 0.1,
        "greenSignalThreshold" : 0.1,
        "blueSignalThreshold" : 0.1
    },
   ///  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)

b2un0
Moderator

Beiträge:1819
Registriert:16. Nov 2015
Wohnort:Hamburg
Beruf:Softwareentwickler

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 11:10

Sobald ich die Kabel umstecke kommt es dazu, dass die Leds flackern.


Ich verstehe nicht was du mit "Kabel umstecken" meinst?! warum steckst du ein Kabel um?!

Wie hast du den was verkabelt und in welcher Konstellation kommt der Fehler?

Das ist alles sehr verwirrend geschrieben ^^
Kein Support per PM!

scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 11:17

sry ich wollte das nicht so verwirrend schreiben :)

Also wenn ich den Pi über ein Hdmi Kabel direkt mit dem Fernseher verbinde (ohne Grapper, Konverter und Splitter) dann funktoniert alles ohne Fehler.

Wenn ich die Verkabelung wie in der Anleitung Ambilight für jedes HDMI-Gerät! Die ultimative Schritt-für-Schritt Anleitung durchführe dann flackern/zittern die Leds.

b2un0
Moderator

Beiträge:1819
Registriert:16. Nov 2015
Wohnort:Hamburg
Beruf:Softwareentwickler

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 11:20

Aber du steckst doch den PI dabei nicht um?!
Der PI bleibt weiterhin per HDMI am TV, da wird absolut nichts verändert!
Am HDMI Splitter kommen alle anderen Geräte ran, wie z.B. ein BD Player, ne Konsole oder so.

Wenn es dann flackert während der BD-Player am HDMI Splitter hängt und du eine BD guckst, dann gilt für dich hier Beitrag #2
viewtopic.php?f=8&t=836
Kein Support per PM!

scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 12:29

Ich hab jetzt die folgenden Screenshots wie in deine Anleitung beschrieben erstellt.

Leider trifft keiner deiner Punkte auf meine Bilder zu.

Kurzer Nachtrag ich hab jetzt auch mal in der .json Datei den Eintrag auf PAL geändert und damit getestet.

Das Ergebnis ist das selbe bis auf .json (Pal) und am Konverter NTSC da kommt gar nix mehr an.

Hast du eine Idee ?

NTSC mit Strom

Bild

Ntsc ohne Strom

Bild

Pal mit Strom

Bild

Pal ohne Strom

Bild

b2un0
Moderator

Beiträge:1819
Registriert:16. Nov 2015
Wohnort:Hamburg
Beruf:Softwareentwickler

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 12:48

Wenn du in der json den Wert PAL/NTSC änderst wirkt sich das nicht (!) auf die Screenshot Funktion aus!

Wenn du beim Screenshot erstellen den EingangsTyp ändern willst musst das mittels zusätzlichen Parameter machen
"--video-standard PAL"
"--video-standard NTSC"


Und dann alle vier Kombinationen testen:

Konverter PAL; Screenshot PAL
Konverter PAL; Screenshot NTSC
Konverter NTSC; Screenshot PAL
Konverter NTSC; Screenshot NTSC

So wie ich das sehe wird dein Signal aber durch irgendwas anders gestört, die weißen Bildpunkte sprechen dafür.
Was hängt den am HDMI Splitter dran worüber du das Bild bekommen hast?

Hast du deinen Konverter mal wie in meiner Anleitung beschrieben geöffnet? Kannst du davon mal ein Bild anhängen?
Kein Support per PM!

scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 13:12

Hallo *,

an dem HDMI Splitter ist wie folgt belegt:

1 Ausgang oben Link -> TV
2. Ausgang oben Rechts -> HDMI Kabel vom Converter->Video Grabber

Am Eingang hängt aktuell mein Sat Receiver (Wobei ich hier auch schon einen anderen getestet hab).

Ich hab mich dabei streng an die Anleitung gehalten.

Bilder vom Converter hab ich auch gemacht:

Vorne:

Bild

Hinten:

Bild

Viele Grüße

b2un0
Moderator

Beiträge:1819
Registriert:16. Nov 2015
Wohnort:Hamburg
Beruf:Softwareentwickler

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 13:17

Dann mach noch mal bitte die vier Screenshots wie oben von mir geschrieben wo du den "--video-standard" Parameter mit übergibst.

Hast du evtl auch ein altes AV Kabel vom Konverter zum Grabber verwendet?
Kein Support per PM!

scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 13:52

Hallo,

ich hab die folgenden Auswertungen gesammelt:

Schalter auf PAL und Screenshot auf Pal

Bild

Schalter Pal und Screenshot auf NTSC

Bild

Schalter NTSC und Screenshot auf Pal

Bild

Schalter NTSC und Screenshot auf NTSC

Bild


Des Weitren hab ich mal ein Bild von der Rückseite meines Fernsehers gemacht.

Ein anders Kabel hab ich nicht verwendet.

Bild

b2un0
Moderator

Beiträge:1819
Registriert:16. Nov 2015
Wohnort:Hamburg
Beruf:Softwareentwickler

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 14:13

Tolle Mitarbeit, da ist ja alles dabei :D

Wenn das verhalten mit den weißen Pixeln auf dem Screenshot auch bei anderen angeschlossenen HDMI Geräten am Splitter der Fall ist würde ich mal behaupten das der Konverter oder Grabber im Eimer ist.

Wenn du am HDMI Splitter die beiden Ausgänge mal tauscht, hast du dann trotzdem auf dem TV ein klares Bild und beim Screenshot machen weiterhin diesen Pixelsalat? Nur um aus zu schließen das der Splitter nicht an dem einen Ausgang ne Macke hat.

Du könntest ansonsten noch mal versuchen am Grabber mit einem anderen Gerät direkt an AV zu gehen um zu gucken was ankommt, z.B. mit einem alten TV der am Scart das TV Signal ausgibt, einer alten DigiCam wo ein AV Adapter bei war oder ähnlichem.
Kein Support per PM!

scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

26. Apr 2016, 18:20

ich tuh mein Bestes 8-) .

Das Wechseln der HDMI Ausgänge hab ich gerade getestet. Danach hatte ich leider immer noch den gleichen Fehler.

Jetzt besteht nur noch die Möglichkeit das der Splitter komplett einen Treffer hat :/

Ich konnte mir heute temporär den Konverter eines Freundes leihen und hatte damit das gleiche Fehlerbild.

Mein Verdacht ist jetzt entweder der Splitter oder der Grabber.

Hmm....ich muss mal schauen ob ich im Haus noch ein Gerät hab um deinen Vorschlag zu testen.

Ich melde mich sobald ich Neuigkeiten habe :)

Viele Grüße

scorpion141
Neuling

Beiträge:8
Registriert:9. Apr 2016

Probleme mit Ambilight und Externen Quellen

10. Mai 2016, 17:28

Hi Leute,

nachdem der neue Grabber heute endlich in der Post war musste ich feststellen, dass es mit dem neuen Gerät ohne Probleme funktoniert.

Auf der einen Seite freue ich mich natürlich darüber, dass endlich alles korrekt ist und ich keine Probleme mehr habe.

Auf der anderen denk ich über die vielen vielen Stunden der Fehlersuche nach :evil: .

Ich möchte mich auf jeden Fall Recht herzlich bei b2un0 bedanken der mir super weitergeholfen hat.

Vielen Vielen Dank

Zurück zu „Ambilight - Support“