• 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
      8
      -1
      Votes
      8
      Posts
      1.6k
      Views

      rlkeeneyR

      @trincowski I was going to mention that.

    • MovingSoundsM

      Updating a very large collection

      Technical Help
      • • • MovingSounds
      2
      0
      Votes
      2
      Posts
      581
      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
      5
      5
      Votes
      5
      Posts
      763
      Views

      disasterareaD

      +1 for this.

      I am moving over to strawberry on linux over using dopamine on windows. On dopamine, I have about 300 smart playlists (I have about 18k songs in my collection too). The smart playlists being ordered alphabetically by default, instead of creation order (I assume that's what it uses?) would increase navigability.

      It would be really nice if we could make playlist folders too (e.g. i have some playlists based around artists, some based around genres, and so on, and it would be nice to group them), but all of them listed alphabetically would be great!

    • MovingSoundsM

      Scrobbler not updating last.fm

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