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

    Topics created by MovingSounds

    • MovingSoundsM

      Updating a very large collection

      Technical Help
      • • • MovingSounds
      2
      0
      Votes
      2
      Posts
      263
      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
      3
      3
      Votes
      3
      Posts
      277
      Views

      rlkeeneyR

      @MovingSounds I have wanted to do the same. I use smart playlists exclusively.

    • MovingSoundsM

      Scrobbler not updating last.fm

      Technical Help
      • • • MovingSounds
      2
      0
      Votes
      2
      Posts
      257
      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
      278
      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.