• Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Strawberry Music Player Forums
    2. MovingSounds
    3. Topics
    • Profile
    • Following 1
    • Followers 0
    • Topics 5
    • Posts 7
    • Best 3
    • Controversial 1
    • Groups 0

    Topics created by MovingSounds

    • MovingSoundsM

      Getting really fed up of the Patreon aspect.

      General Discussion
      • • • MovingSounds
      5
      -1
      Votes
      5
      Posts
      1.1k
      Views

      P

      I made an account just now to say the patreon is very offputting. Dont advertise on the front page of the website that this is free and available on github when the new releases are behind a paywall. If you had a one time fee for lifetime membership, or even if it was free and donation based, I would be so much more inclined to support you. But youre genuinely just lying about your business model and hoping people stay subbed. Im genuinely going to tell people if they find this product not to use it

    • MovingSoundsM

      Updating a very large collection

      Technical Help
      • • • MovingSounds
      2
      0
      Votes
      2
      Posts
      474
      Views

      jonasJ

      @MovingSounds
      That does not sound normal. Although it's not the bitrate or the size of the collection that makes the most difference, it's the number of files.
      For me with a collection of 24432 FLAC files (625GB), a scan is usually done in under 15 minutes on an SSD disk.
      But with the song fingerprinting or ebur128 analysis options on it will take much longer.
      Is your source a local disk? Is it an SSD disk? How many files do you have in total under the directory added in Collection, including all files not just audio files? What audio formats? Do you have the fingerprinting or ebur128 options on?

    • MovingSoundsM

      Smart Playlist reordering

      Feature Suggestions
      • • • MovingSounds
      4
      4
      Votes
      4
      Posts
      543
      Views

      S

      +1 thanks

    • MovingSoundsM

      Scrobbler not updating last.fm

      Technical Help
      • • • MovingSounds
      2
      0
      Votes
      2
      Posts
      471
      Views

      MovingSoundsM

      @MovingSounds Well I "sort of" fixed it.

      I'd had my last.fm account since 2011 and I noticed that it hadn't updated for some time. So, I deleted the account and created a new one, connected it to Strawberry and it immediately started keeping track, in fact it even back-peddled and added tracks from the last couple of weeks.

    • MovingSoundsM

      Exporting a catalogue of my library to view online?

      Technical Help
      • online catalogue • • MovingSounds
      2
      0
      Votes
      2
      Posts
      497
      Views

      DakesD

      @MovingScenes
      This would work on Linux, on Windows, you might need to find an alternative to wget.
      Open the console, navigate to your music directory and launch a python http server with: python -m http.server 8123 (You need to have python installed, obviously)
      Warning: this is not secure, any one on your local network can access this server, so be sure to close it afterwards.
      When that is running, in a new Terminal window download the hosted page, but only the html files with: wget -r --accept "*.html" "http://localhost:8123/"
      This gives you your music folder structure as html files. You could copy the folder to your phone, laptop, or whatever and browse your collection, by opening the index.html in a webbrowser. Alternatively, you could host it on a webserver, if you have one.

      This is just what I spontaneously came up with, if I needed a solution in a pinch. But I am sure there are better ways.