A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
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