A PHP and PERL based "jukebox style" home audio system for Linux.
Go to file
2024-05-22 16:58:47 +00:00
art Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
img Add manifest.json, extra icons to support modern Android Home Screen apps 2024-05-18 15:47:55 +00:00
jquery-ui-1.11.2 Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
scripts Add system service file for deb derivatives 2024-05-18 15:48:19 +00: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
ajax_changequeue.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_createqueue.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_disableauto.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_dropcustomqsong.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_dropjukeboxsong.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_dropsong.php Sigh. Actually commit after the file was saved 2020-04-18 15:24:28 -04:00
ajax_emptyjukebox.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_getcustomq.php Remove unneeded reference to getID3 2024-05-18 15:11:05 +00:00
ajax_getjukebox.php Remove unneeded reference to getID3 2024-05-18 15:11:05 +00:00
ajax_getqueuelist.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_getqueuetarget.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_getvolrange.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_getvolume.php Added header.php include. No idea how that got missed. 2019-07-04 15:27:44 +00:00
ajax_listsongs.php Remove unneeded reference to getID3 2024-05-18 15:11:05 +00:00
ajax_queuesong.php Make christmas songs impossible to queue when it isn't December 2020-04-18 14:50:06 -04:00
ajax_searchsongs.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_setchristmasfreq.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_setqueuetarget.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_setvolume.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_skipsong.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_surpriseme.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
ajax_togglemute.php Added header.php include. No idea how that got missed. 2019-07-04 15:27:44 +00:00
ajax_togglexmas.php 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 Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
curthumb.php Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
desktop.css 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 Add manifest.json, extra icons to support modern Android Home Screen apps 2024-05-18 15:47:55 +00:00
jquery-1.11.1.min.js Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
jquery.touchSwipe.min.js Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
LICENSE Initial commit 2019-07-02 07:15:58 -04:00
manifest.json Add manifest.json, extra icons to support modern Android Home Screen apps 2024-05-18 15:47:55 +00:00
minimal.css Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
minimal.js Updates prior to switching to new Jukebox computer 2024-05-15 12:36:32 -04:00
mobile640.css Initial commit to Git from Subversion 2019-07-02 07:43:31 -04:00
README.md More markdown hate 2019-07-02 09:31:57 -04:00
tables.sql Change the initial volume to zero (0) 2019-07-02 08:09:28 -04:00
tf201.css Initial commit to Git from Subversion 2019-07-02 07:43:31 -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 getID3 project needs to be added somewhere in a folder included by PHP.
  • 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