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

    Posts

    Recent Best Controversial
    • RE: Face recognition and then play a random video

      https://github.com/Nuckinfutz/MM-random-video-player

      posted in Requests
      N
      nuckinfutz
    • RE: Total novice experiencing install problems with "mm.sh"?

      Not really sure why everyone wants to use pm2. It was a major headache for me. Noobs should not use that until they get everything else working perfectly.

      posted in Troubleshooting
      N
      nuckinfutz
    • Random video player based on facial recognition ID

      Available on github

      https://github.com/Nuckinfutz/MM-random-video-player.git

      posted in Entertainment
      N
      nuckinfutz
    • RE: Face recognition and then play a random video

      @Labzz I’ll have it posted very soon. Sorry I got called away.

      posted in Requests
      N
      nuckinfutz
    • RE: Face recognition and then play a random video

      I got this done using 2 different methods. One was using the HTML video player. The other was using the OMX player
      I’llpost code later tonight And explain better

      posted in Requests
      N
      nuckinfutz
    • RE: used the amazing complete setup but after 'npm start'.....

      Here is what I would do as I’ve been in your shoes’

      This is how I do it and I’ve done it close to 50 times.

      Ignore everyone else for now. You will be starting from scratch. Again.

      Go here and follow the Noobs install procedure. You want the full Noobs NOT Noobs Lite

      https://www.raspberrypi.org/downloads/noobs/

      When you boot this choose the first option (raspian) After it finishes
      Dont add users or change anything else leave all defaults with the exception of the following

      Make sure you set your localization, keyboard, wireless etc. by going to

      Preferences -> Raspberry Pi Configuration

      Open a terminal session
      Your prompt should look like the following

      pi@raspberrypi:~ $

      copy and paste the following into a terminal. This is one line. accept any defaults if a question comes up.

      curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh | bash

      Now Copy and paste

      cd /home/pi/MagicMirror

      DISPLAY=:0 npm start dev

      If you dont want the Console running omit “dev” from the end

      I always start the MM using this method.

      posted in Troubleshooting
      N
      nuckinfutz
    • RE: used the amazing complete setup but after 'npm start'.....

      @alonshwartz1966 you either are tring to start the mirror from the root folder or you didn’t install node.js correctly I believe. I’m on my cell sorry I could give a better answer. I’ll check later tonight

      posted in Troubleshooting
      N
      nuckinfutz
    • Custom video module need help debugging

      I wrote a module to display a random video based on the successful evaluation of the FacialRecognition module… It executes without any obvious errors but only the following output appears on the mirror.

      // helloworld
      //module_0_helloworld

      I modified the hellowworld module as follows

      Module.register("helloworld",{
      
      #!/usr/bin/env python
              import os, random
      
              def rndvid ():
              randomfile = random.choice(os.listdir("/home/pi/Videos"))
              file = ' /home/pi/Videos/'+ randomfile
              os.system ('omxplayer' + file)
      
               rndvid ()
      }
      

      });

      I would love som help

      posted in Troubleshooting
      N
      nuckinfutz
    • RE: Halloween mirror ghouls anyone?

      is there a way to use a variable in the video file name? This is so close to what I want it hurts. What I want to do is play a random video from a specific location. I will be creating the videos so I will have complete control over the video naming and encoding.

      posted in General Discussion
      N
      nuckinfutz
    • Simple random video player?

      Looking to play a random video based on user logged in. This is for a true Disney type of magic mirror for a little girl. All the code examples I seem to find are way to complicated. There will be 10 videos and I would like them to play randomly when she looks in the mirror.

      posted in Requests
      N
      nuckinfutz
    • 1 / 1