A PHP and PERL based "jukebox style" home audio system for Linux.
Go to file
2025-04-18 15:56:15 -04:00
ajax Add ** to queue names in selects when empty 2025-04-18 15:56:15 -04:00
art Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
core Switch to current version of jQuery and jQueryUI 2024-06-01 12:38:28 -04:00
css Fix being able to click on searched songs 2025-04-18 15:03:39 -04:00
img Add Bluegrass genre art 2024-06-01 14:15:43 -04:00
js Fix being able to click on searched songs 2025-04-18 15:03:39 -04:00
scripts Fix htaccess syntax to deny all 2025-04-18 14:15:48 -04:00
.gitignore Add getID3 using composer 2024-05-15 19:47:44 +00:00
.htaccess Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
class_queue.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
class_song.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
composer.json Add getID3 using composer 2024-05-15 19:47:44 +00:00
config_dist.php Change the MP3 player (mpg321) to a configurable option. 2019-07-04 15:40:12 +00:00
constants.php Add Bluegrass genre art 2024-06-01 14:15:43 -04:00
curthumb.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
functions.php Change the MP3 player (mpg321) to a configurable option. 2019-07-04 15:40:12 +00:00
header.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
index.php Switch from returning HTML for listsongs to JSON for currently playing song 2024-06-01 13:48:56 -04:00
LICENSE Initial commit 2019-07-02 07:15:58 -04:00
manifest.json Make start URL for manifest relative 2024-05-29 13:49:01 -04:00
README.md Change installation instructions for third party libraries 2024-05-29 10:37:53 -04:00
tables.sql Change the initial volume to zero (0) 2019-07-02 08:09:28 -04:00

HomeAudio

A PHP and PERL based "jukebox style" home audio system for Linux.

Installation

  • The homeaudio.ini file from the /scripts/ folder needs to be edited and saved in /etc/. Make sure it is ONLY readable by the web server user.
  • The project uses composer to install third party libraries. From the root folder execute: composer update
  • The tables.sql file needs to be imported into the database referenced in the homeaudio.ini file.
  • The art/ folder needs to be writable by the web server user.
  • The main script for the home audio system should be set to execute at boot time:
    su web -c "/var/www/html/m/scripts/homeaudio_music.pl &" 1>/dev/null 2>&1
  • The daily script to do upkeep and maintenance should be set to run every day (typically from /etc/cron.daily/, can be a soft link).
    cd /etc/cron.daily && ln -s /var/www/html/m/scripts/homeaudio_updateall.sh