Announcement

Collapse
No announcement yet.

Alternative Raspberry Music client software

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Alternative Raspberry Music client software

    I am looking for a Music client software that does the following:
    - Play spotify, tidal etc.
    - Please music from local server (including opus,ogg, flac, alac etc) excluding LMS i.e. Navidrome etc.

    I am searching for alternative to LMS basically
    I tried Navidrome and playsub as a remote and I cannot cast onto a piCorePlayer. Are there other options ?

    #2
    Originally posted by HerculePirate View Post
    I am looking for a Music client software that does the following:
    - Play spotify, tidal etc.
    - Please music from local server (including opus,ogg, flac, alac etc) excluding LMS i.e. Navidrome etc.

    I am searching for alternative to LMS basically
    I tried Navidrome and playsub as a remote and I cannot cast onto a piCorePlayer. Are there other options ?
    What improvements do you want to see over LMS?
    Living Room: Touch or Squeezelite (Pi3B) > Topping E30 > Audiolab 8000A > Monitor Audio S5 + BK200-XLS DF
    Bedroom: Radio
    Bathroom: Radio

    Comment


      #3
      Sir,
      I have an UNRAID server which holds my music and runs LMS.
      The LMS version running is the most official one. But does not scan all my files. Misses or skips some OPUS folders.
      I tried MoOde and Spotify stops after some time.
      I tried pCP and spotify stops after 1 track.
      LMS is perfect but I cannot see a lot of my OPUS folders

      Comment


        #4
        Originally posted by HerculePirate View Post
        Sir,
        I have an UNRAID server which holds my music and runs LMS.
        The LMS version running is the most official one. But does not scan all my files. Misses or skips some OPUS folders.
        I tried MoOde and Spotify stops after some time.
        I tried pCP and spotify stops after 1 track.
        LMS is perfect but I cannot see a lot of my OPUS folders
        I see, so some OPUS files are scanned but others are not. Is there any obvious difference between them? I don't have any OPUS files in my library but I think I have created some at some point for test purposes. Have you asked on the forum about the failure to scan some OPUS files? I would expect someone here to figure out why they are failing.
        Living Room: Touch or Squeezelite (Pi3B) > Topping E30 > Audiolab 8000A > Monitor Audio S5 + BK200-XLS DF
        Bedroom: Radio
        Bathroom: Radio

        Comment


          #5
          Looking back I see the issue is your version of Audio Scan on your Unraid server. Ever thought of getting a Raspberry Pi? 😀
          Living Room: Touch or Squeezelite (Pi3B) > Topping E30 > Audiolab 8000A > Monitor Audio S5 + BK200-XLS DF
          Bedroom: Radio
          Bathroom: Radio

          Comment


            #6
            slartibartfast Is your question of RPi as a client or a server ?
            Yes, the forum mentioned that the the UNRAID docker does not have audioscan 1.06 but its 1.05.
            Cannot get the developer of the docker to ungrade to 1.06 as he says its upto the developers.

            Also, how can I cast from Navidrome/Subsonic to a piCorePlayer or a moOde ?

            Comment


              #7
              Originally posted by HerculePirate View Post
              slartibartfast Is your question of RPi as a client or a server ?
              Yes, the forum mentioned that the the UNRAID docker does not have audioscan 1.06 but its 1.05.
              Cannot get the developer of the docker to ungrade to 1.06 as he says its upto the developers.

              Also, how can I cast from Navidrome/Subsonic to a piCorePlayer or a moOde ?
              LMS on a Pi has Audio Scan 1.06. It is possible to build Audio Scan 1.06 yourself but I don't know if docker complicates things. It would be better if the developer of the docker did that of course.
              This might be a daft question but why do you have so many OPUS files? Is it to save space?
              Living Room: Touch or Squeezelite (Pi3B) > Topping E30 > Audiolab 8000A > Monitor Audio S5 + BK200-XLS DF
              Bedroom: Radio
              Bathroom: Radio

              Comment


                #8
                You can build your own docker image locally:
                FROM alpine:latest

                #SHELL ["/bin/ash", "-eo", "pipefail", "-c"]

                RUN apk add --no-cache curl \
                && curl -Ls http://www.sodface.com/repo/sodface-pub-key.tar.gz | tar -C /etc/apk/keys/ -xvz [email protected] \
                && echo http://www.sodface.com/repo >> /etc/apk/repositories \
                && apk update \
                && apk upgrade --available \
                && apk add --no-cache espeak \
                faad2 \
                flac \
                ffmpeg \
                lame \
                lms \
                perl-crypt-cbc \
                perl-data-peek \
                perl-dev \
                sox \
                tzdata \
                wavpack \
                && cp /usr/share/zoneinfo/Europe/Zurich /etc/localtime \
                && echo 'Europe/Zurich' > /etc/timezone \
                && apk del curl

                # STS Profiles
                ADD --chown=lms:nogroup https://www.nexus0.net/pub/sw/lmsann...sprofiles.json /usr/local/etc/

                USER lms
                VOLUME /config
                EXPOSE 3483 3483/udp 9000

                ENTRYPOINT ["/usr/bin/perl"]
                CMD ["/opt/lms/slimserver.pl", "--cachedir", "/config/cache", "--logdir", "/config/logs", "--prefsdir", "/config/prefs"]​

                Comment


                  #9
                  slartibartfast
                  Its a practise I had started of saving all less interesting albums into OPUS for saving space. it saved me 30% space compared to a flac file.
                  Now i have a 72TB server but stuck with OPUS files.
                  Also, I have converted my RPi 3B+ to a LMS server that has a audioscan=1.06. WIll let you know if I can see all the OPUS files.

                  Comment


                    #10
                    I am also trying to create a Linux VM and have LMS run on it.
                    The version available on the official channel is v8.3.1 but with audioscan=1.05.
                    Is there LMS deb with audioscan=1.06???

                    Comment


                      #11
                      Originally posted by HerculePirate View Post
                      I am also trying to create a Linux VM and have LMS run on it.
                      The version available on the official channel is v8.3.1 but with audioscan=1.05.
                      Is there LMS deb with audioscan=1.06???
                      What Perl version is your Linux using? We have 1.06 in for Perl 5.36 and 5.32. It really depends on the Perl version, not on the Linux.
                      Michael

                      "It doesn't work - what shall I do?" - "Please check your server.log and/or scanner.log file!"
                      (LMS: Settings/Information)

                      Comment


                        #12
                        mherger its PERL v5.34.0
                        I can upgrade it to v5.36.0 via perlbrew

                        Does this mean that PERL version in a docker will affect the version of audioscan version installed.
                        If I can ask the docker creator to upgrade the PERL version to v5.36 then the right audioscan will be installed ?

                        Comment


                          #13
                          So i installed perl v5.36.0 via perlbrew and then installed LMS on the linux LinuxMint XFCE and the version of perl is still 5.34 on LMS

                          Comment


                            #14
                            Originally posted by HerculePirate View Post
                            mherger its PERL v5.34.0
                            I can upgrade it to v5.36.0 via perlbrew

                            Does this mean that PERL version in a docker will affect the version of audioscan version installed.
                            If I can ask the docker creator to upgrade the PERL version to v5.36 then the right audioscan will be installed ?
                            Yes.

                            Or you simply use the official LMS Community container.
                            Michael

                            "It doesn't work - what shall I do?" - "Please check your server.log and/or scanner.log file!"
                            (LMS: Settings/Information)

                            Comment


                              #15
                              mherger
                              Any help, as I installed PERL v5.36.0 and LMS says its using v5.34

                              Comment

                              Working...
                              X