Alog is an AI-powered wearable device application that processes audio input using machine learning models to detect and classify sounds and speech in real-time.
To get started with Alog, follow these simple steps:
-
Clone the repository:
git clone https://github.com/yourusername/alog.git cd alog
-
Run the installation script:
sudo ./install.sh
The installation script will:
- Install all necessary system dependencies
- Set up Python virtual environment
- Install Python packages
- Build the frontend
- Configure automatic login and log viewing
- Set up and start the system service
There are three ways to view the application logs:
-
Direct Display (HDMI):
- Connect a display via HDMI
- The logs will automatically appear on TTY1 after boot
- No login required - the system automatically logs in and shows logs
-
SSH Access:
ssh khadas@your-device-ip journalctl -f -u alog.service --no-hostname --output=cat
-
Log File:
tail -f /home/khadas/alog/logs/app.log
Access the web interface at http://your-device-ip:5000
By default, the application shows EVENT, SPEECH, and ERROR level logs. To modify this:
-
Edit the service configuration:
sudo nano /etc/systemd/system/alog.service
-
Modify the ENABLED_LOG_LEVELS environment variable:
Environment="ENABLED_LOG_LEVELS=EVENT,SPEECH,ERROR,DEBUG"
-
Restart the service:
sudo systemctl restart alog.service
Available log levels: DEBUG, INFO, EVENT, SPEECH, WARNING, ERROR, CRITICAL
alog/
├── audio_chunks/ # Stored audio segments
├── backend/ # Python backend
│ ├── api/ # REST API endpoints
│ ├── models/ # Data models
│ └── services/ # Core services
├── frontend/ # React frontend
│ └── src/ # Frontend source code
└── models/ # ML models
├── vosk/ # Speech recognition
└── yamnet/ # Sound classification
For development, you can run the application manually:
-
Start the backend:
source venv/bin/activate python backend/app.py
-
Start the frontend (in a separate terminal):
cd frontend npm start
-
No logs appearing on HDMI display:
- Check if the service is running:
systemctl status alog.service
- Verify TTY1 configuration:
cat /etc/systemd/system/[email protected]/override.conf
- Check if the service is running:
-
Service fails to start:
- Check logs:
journalctl -u alog.service -n 50
- Verify permissions:
ls -la ~/alog
- Check Python environment:
~/alog/venv/bin/python -V
- Check logs:
-
No audio detection:
- Verify audio device:
arecord -l
- Check permissions:
groups khadas
- Verify audio device: