• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. ejay-ibm
  3. Posts
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Offline
  • Profile
  • Following 0
  • Followers 1
  • Topics 7
  • Posts 94
  • Groups 2

Posts

Recent Best Controversial
  • RE: MMM-Spotify

    @Sean @kwaeksler
    Spotify is account linked, so actually, the module will display what is currently played on any devices linked to the same account ( same client ID/secret) even out of your network. I tested with a Spotify family , even different email are linked to the main account. So I can not think of a solution right now.

    Ejay

    posted in Entertainment
    E
    ejay-ibm
    Mar 23, 2019, 8:45 AM
  • RE: pm2 Error auto starting

    I would say is more ‘sure’ when you are in the right folder to do :

    sudo chmod +x ./mm.sh

    posted in Troubleshooting
    E
    ejay-ibm
    Mar 22, 2019, 7:43 PM
  • RE: MMM-AI

    @teitlebot Hi would do it from photophop as part of the animation . But their’s maybe a way to do it in javascript but that would need some additional implementation in the modules .

    Working with the gif is more flexible in my taste .

    Ejay

    posted in Fun & Games
    E
    ejay-ibm
    Mar 22, 2019, 6:06 PM
  • RE: MMM-AI

    @teitlebot I would use a black pixel image as no image
    you can find all you need here
    https://github.com/aureooms/pixels

    Ejay

    posted in Fun & Games
    E
    ejay-ibm
    Mar 22, 2019, 10:31 AM
  • RE: MMM-AI

    @teitlebot You need to export as a movie, Then make an import as frame in photoshop
    This will give you an idea
    https://graphicdesign.stackexchange.com/questions/46656/how-to-convert-a-video-file-into-an-animated-gif-in-photoshop

    Ejay

    posted in Fun & Games
    E
    ejay-ibm
    Mar 22, 2019, 10:28 AM
  • RE: MMM-Spotify

    @Sean said in MMM-Spotify:

    spotify icon will be appeared when there is no possible playback or device. But not sure. I didn’t test about it.

    @Cr4z33

    Yes that is correct . When nothing is played and all players are disconnected the white spotify icon appear.
    We place that one here just to not have nothing.
    As Sean said this is customizable , you just need to change the png file under the resources directory .

    Enjoy you new module.

    Ejay

    posted in Entertainment
    E
    ejay-ibm
    Mar 21, 2019, 7:44 AM
  • RE: MMM-Spotify

    @Sean It was a real pleasure to work with you on this project.
    We have a real good Spotify module now that do all in one!
    Fantastic!

    posted in Entertainment
    E
    ejay-ibm
    Mar 20, 2019, 6:13 PM
  • RE: MMM-SpotifyControl . Control your Spotify music player using Mk2 assistant.

    @Cr4z33 @F17MC .
    This Module is now deprecated and replaced by
    https://forum.magicmirror.builders/topic/10091/mmm-spotify
    git here :
    https://github.com/eouia/MMM-Spotify

    Thanks to @sean for the hard work!

    Ejay

    posted in Entertainment
    E
    ejay-ibm
    Mar 20, 2019, 6:11 PM
  • RE: MMM-AI

    @justjim1220
    Yes everything is possible .
    It’s just different gif ani .
    So you can make gif with your family members from a video and convert it to gif .

    I’m using crazy head to transform a static picture into a moving / talking avatar .
    Then some photoshop to finalize the gif.

    Ejay

    posted in Fun & Games
    E
    ejay-ibm
    Mar 20, 2019, 6:08 PM
  • RE: MMM-AI

    @teitlebot Hey the feature has been implemented,
    Sorry i’m crawling under work and forgot to update ( I’ll update my repo in the week . )
    You just need to update your Mk2 assisant ( Git Pull from MMM-Assistant folder)
    @Sean the developer gently added new notification called ASSISTANT_UNDERSTOOD . Use that one to trigger the talking effect .

    That is my config.js sample :

    module: "MMM-AI",
          position: "top_center",
          config: {
            width: "300px",
            height: "400px",
            refresh_interval_sec: 0, // you should not refresh, because content will be back to default value.
            content: `<img id="MY_ANIMATION" src="modules/MMM-AI/jarvis-standby2.gif"/>`,
            triggers: [
              {
                trigger: "HOTWORD_RESUME", 
                fires: [
                  {
                    fire: "standby_Image",
                    payload: payload => {
                      var img = document.getElementById("MY_ANIMATION");
                      img.src = "modules/MMM-AI/jarvis-standby2.gif";
                      return payload;
                    }
                  }
                ]
    
              },
                       {
                trigger: "HOTWORD_PAUSE",
                fires: [
                  {
                    fire: "VOLUME_STORE",
                    //fire: "VOLUME_MUTE",
                    exec: "amixer set Master 10% -q"
                  }
    
                ]
    
              },
      
            {
                trigger: "ASSISTANT_UNDERSTOOD", 
                fires: [
                  {
                    fire: "VOLUME_RESTORE",
                    payload: payload => {
                      var img = document.getElementById("MY_ANIMATION");
                      img.src = "modules/MMM-AI/jarvis-talk2.gif";
                      return payload;
                    }
                  }
                ]
              }
            ]
          }
        },
    

    Ejay

    posted in Fun & Games
    ejay-ibmE
    ejay-ibm
    Mar 18, 2019, 4:20 PM
  • 1
  • 2
  • 3
  • 4
  • 5
  • 9
  • 10
  • 2 / 10
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy