AtmoLight and Visualization (3 Viewers)

B

BassFan

Guest
this was the version from about 3 hours ago, not the most recent. i'm going to try that in a moment. it would seem from azzuro that having the AtmoWin plugin enabled is causing the LEDs off. i wonder what the solution is to get them both working enabled together?

the fix is simple @angie05 should check for
Code:
if (!g_Player.IsMusic)
If that is so the LEDs should not be switched off
Why even if AtmoLight don't mind visualization with Music.

greets
 
B

BassFan

Guest
@kenwonders for me i think only atmolight should manage atmowin, and bassviz must, give acces to his own framegrabbe, for capture viz
i have tell you no..
Bassvis should work without Atmolight :)
And it work after uninstall Atmolight Or?

Also BassVis is a Bridge (Not a Plugin) between Any Application and Visualisation Types
If AtmoWin work with MP then it should work with my own Player or other Application which used BassVis
Without Atmolight.

greets
 
Last edited by a moderator:
B

BassFan

Guest
@azzuro yes, i know, but can add an exception if used in MP, don't manage atmowin
no. why?

it's simple AtmoLight should not work or checked for Filetypes which not used..
and my\your Problem are gone.

if working with Video\TV then should start and stopped any Files
and do nothing if a Filetypes dependent on Music.

Simple or?
If you switch from TV\Video to music then AtmoLight must
Once the LEDs will turn off but not for each MP3 file
It works but not so.
------------------------------
wenn man von TV\Video nach Musik umschaltet dann muss AtmoLight
einmalig die LEDs ausschalten aber nicht bei jeder MP3 Datei
es arbeitet doch nicht damit.

greets
 
Last edited by a moderator:
B

BassFan

Guest
that is the mistake..

Code:
    void g_Player_PlayBackEnded(g_Player.MediaType type, string filename)
    {
      DisableLEDs();
    }
    void g_Player_PlayBackStopped(g_Player.MediaType type, int stoptime, string filename)
    {
      DisableLEDs();
    }

MediaType can be Music!

Code:
    public enum MediaType
    {
      Video = 0,
      TV = 1,
      Radio = 2,
      RadioRecording = 3,
      Music = 4,
      Recording = 5,
      Unknown = 6,
    }

Code:
      else if (type == g_Player.MediaType.Music)
      {
        currentEffect = AtmolightSettings.effectMusic;
        lasteff = 1;
      }

What do with Music ?
this can not be fixed without change the Music part in Atmolight Process Plugin

greets
 
Last edited by a moderator:

kenwonders

MP Donator
  • Premium Supporter
  • January 19, 2007
    791
    741
    Home Country
    England England
    it also needs to know it isn't configured for a different option (like colourcycle) before ignoring stop for music doesn't it?

    i'm grabbing the source, i think i'd like to see what i can do.
     

    Users who are viewing this thread

    Top Bottom