I did the following on an OSMC image on a raspberry Pi 4:


Code:
--------------------
    curl -sSL https://get.docker.com | sh
--------------------


Code:
--------------------
    sudo usermod osmc -aG docker
--------------------

exit and log in

Code:
--------------------
    docker pull mwalters68/musicip-arm
--------------------


Code:
--------------------
    docker run -d --name=musicip --platform=armhf -e PUID=1000 -e PGID=1000 -e 
TZ=Europe/London -p 10002:10002 -v /mnt/MUSIC:/music:ro -v 
/home/osmc/MusicIP/MusicMagicMixer:/config --restart unless-stopped 
mwalters68/musicip-arm
  
--------------------

That will run MusicIP!
but when I try to add music it does nothing.
So I went to 192.168.1.29:10002, added /mnt/MUSIC to 'enter root folder
of music' and pressed 'add music'. Nothing happens

Tried this from the
https://forums.slimdevices.com/showthread.php?106958-Success-MusicIP-and-Spicefly-Sugarcube-running-on-Raspberry-Pi
topic:

Code:
--------------------
    #! /bin/sh
  
  ### BEGIN INIT INFO
  # Provides: mmserver
  # Required-Start: $remote_fs $syslog
  # Required-Stop: $remote_fs $syslog
  # Default-Start: 2 3 4 5
  # Default-Stop: 0 1 6
  # Short-Description: Start MusicIP daemon at boot time
  # Description: Enable service provided by daemon.
  ### END INIT INFO
  
  
  # NON-PRIVIELEGED USER TO RUN MUSICMAGICSERVER.
  USER=osmc
  # PATH TO THE MUSICMAGICMIXERSERVER 
  export MUSICHOME=/home/osmc/MusicIP/MusicMagicMixer/
  case $1 in
  start)
        # next line was original
        # su - $USER -c $MUSICHOME"MusicMagicServer start & > /dev/null" 
        sudo -u osmc /home/osmc/MusicIP/MusicMagicMixer/MusicMagicServer start 
& > /dev/null 2>&1 
        echo "Running MusicMagicServer"
        exit
        ;;
  stop)
        # next line was original
        # su - $USER -c $MUSICHOME"MusicMagicServer stop & > /dev/null"
        sudo -u osmc /home/osmc/MusicIP/MusicMagicMixer/MusicMagicServer stop & 
> /dev/null 2>&1 
        echo "Stopped MusicMagicServer"
        exit
        ;;
  *)
  echo "Usage: /etc/rc.d/init.d/mmserver { start | stop }"
        exit
        ;;
  esac
--------------------


But that made no difference.

So what's can I try now?


------------------------------------------------------------------------
CypherMK's Profile: http://forums.slimdevices.com/member.php?userid=62798
View this thread: http://forums.slimdevices.com/showthread.php?t=114235

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to