Code: Select all
sudo apt-get install at
Code: Select all
FORMAT YOUR SD CARD
It is best to format your SD card before copying the NOOBS files onto it. To do this:
Visit the SD Association’s website and download SD Formatter 4.0 for either Windows or Mac.
Code: Select all
#!/bin/bash
while : ; do
for FILE in * ; do
if file "$FILE" | grep Audio | grep -q MPEG; then
omxplayer "$FILE"
fi
done
done