Read the statement by Michael Teeuw here.
Posts
-
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.
-
RE: Face recognition and then play a random video
@Labzz I’ll have it posted very soon. Sorry I got called away.
-
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 -
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 followingMake 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 followingpi@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.
-
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
-
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_helloworldI 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
-
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.
-
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.