• Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Strawberry Music Player Forums
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • S

      Option for lyrics from metadata

      Feature Suggestions
      • • • silver-sun
      6
      0
      Votes
      6
      Posts
      4.4k
      Views

      S

      Wow! That's what I call service! Thank you!
      Just tested lyrics with m4a files and the tag editing now works!
      I also tested with an ALAC (Apple Lossless) file, which, confusingly (to me, anyway!) is also m4a. It works on that also!

      This is great news. For what it's worth, I think that full compatibility with Apple sourced files is important if you want to develop Strawberry for the Mac platform. While I don't have any real evidence, I think a lot of audiophiles own Macs. I used to read Stereophile magazine, and they were always mentioning their Macs when the subject of computers in audio came up.

      To this day, iTunes will not play FLAC files, so Mac users that use iTunes will most likely use ALAC, or lossy AAC. iTunes default decoding is 256 kbps AAC, and that is also what you get if you purchase music from Apple.

      On a side note, there is a lot of dissatisfaction with Apple these days, even with long time users. I love my iMac, but I am using Linux more and more. It is wonderful that my iTunes collection works well with a player like Strawberry. For Mac expatriates moving to Linux, Strawberry could be a good fit. It could also be a nice alternative to iTunes on the Mac platform.

      Cheers

    • ?

      Chromecast Support

      Feature Suggestions
      • • • A Former User
      6
      1
      Votes
      6
      Posts
      1.6k
      Views

      J

      @Antihero7038
      Here you can download Chromecast Player Premium version for Free.

      Visit here - https://blackapks.com/en/tv-cast-pro

    • P

      High CPU usage on Mac

      Technical Help
      • • • pdeverson
      6
      0
      Votes
      6
      Posts
      1.6k
      Views

      T

      High CPU usage on Mac is due to a macOS-specific QT5 problem with the Track/Playlist screen and scrolling/interacting with it when on a high resolution display (such as your Retina screen on your MacBook) - you should find that CPU usage will drop and performance will noticeably improve if you resize your Strawberry window to something very small.

      I did have an issue ticket raised on this issue on the Strawberry GitHub page, which was closed as it was deemed to be unresolvable under QT5, and I'm trying to get it reopened/looked at again, now that QT6 has been released (which may have a fix for this CPU usage/performance issue).

    • P

      Syncing the playlists to disk

      Feature Suggestions
      • • • petko10
      6
      6
      Votes
      6
      Posts
      3.5k
      Views

      Sharky-PIS

      Strawberry Playlist Sync Tool

      Sync your Strawberry Music Player playlists to disk M3U files with duplicate detection, automatic backups, and smart conflict resolution.

      Features

      Duplicate Detection: Find and remove duplicate tracks within playlists Exact duplicates (same file added multiple times) Optional fuzzy matching (same title/artist, different files) Playlist Sync: Export database playlists to M3U files Creates timestamped backups before overwriting Shows what's added/removed before syncing Add-only mode to preserve disk entries Recursive subdirectory scanning Multiple playlist directory support Backup Rotation: Automatically clean up old backup files Keep N backups per playlist (default: 3) Delete backups older than N days (default: 60) Count takes priority (always keeps minimum backups) Never-Sync List: Skip utility playlists you don't want exported Managed via neversync.txt in your playlist folder Interactive prompts to add playlists during review

      Requirements

      Python 3.6+ (standard library only, no pip installs needed) Linux, macOS, or Windows

      Installation

      Save the script to your preferred location, e.g.:
      ~/.local/share/strawberry/strawberry/strawberry-playlist-sync.py Make it executable (Linux/macOS):
      chmod +x strawberry-playlist-sync.py Optionally create a desktop shortcut (see below).

      Usage

      Interactive Mode

      ./strawberry-playlist-sync.py
      Presents a menu to choose between duplicate checking, syncing, and backup cleanup.

      Command-Line Mode

      Dry run (preview changes without writing):
      ./strawberry-playlist-sync.py -s -p ~/Music/playlists --dry-run

      Dry run with full track details:
      ./strawberry-playlist-sync.py -s -p ~/Music/playlists --dry-run -v

      Sync playlists to disk:
      ./strawberry-playlist-sync.py -s -p ~/Music/playlists

      Sync including subdirectories:
      ./strawberry-playlist-sync.py -s -p ~/Music/playlists -r

      Check for duplicates:
      ./strawberry-playlist-sync.py -d

      Include fuzzy duplicates (same song, different files):
      ./strawberry-playlist-sync.py -d --fuzzy

      Clean up old backups:
      ./strawberry-playlist-sync.py -c -n 5 -a 30
      (Keep 5 backups, delete those older than 30 days)

      Run all operations:
      ./strawberry-playlist-sync.py -d -s -c -p ~/Music/playlists

      Automated mode (no prompts):
      ./strawberry-playlist-sync.py -s -p ~/Music/playlists -y

      Multiple Directories

      ./strawberry-playlist-sync.py -s -p ~/Music/playlists -p /media/usb/playlists

      Command-Line Options
      ┌─────────────────────────┬─────────────────────────────────────────────────┐
      │ Option │ Description │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -d, --check-duplicates │ Find and remove duplicate tracks │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ --fuzzy │ Include fuzzy duplicates in check │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -s, --sync │ Sync database playlists to disk │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -c, --cleanup-backups │ Clean up old backup files │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -p, --playlist-dir PATH │ Playlist folder (can be used multiple times) │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -r, --recursive │ Scan subdirectories for M3U files │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ --add-only │ Only add tracks, preserve existing disk entries │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ --db-path PATH │ Path to strawberry.db (auto-detects if not set) │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -n, --keep-count N │ Backups to keep per playlist (default: 3) │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -a, --max-age DAYS │ Max backup age in days (default: 60) │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ --dry-run │ Preview changes without writing │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -v, --verbose │ Show full track details (with --dry-run) │
      ├─────────────────────────┼─────────────────────────────────────────────────┤
      │ -y, --yes │ Skip confirmation prompts │
      └─────────────────────────┴─────────────────────────────────────────────────┘
      Never-Sync List

      To exclude playlists from syncing (e.g., utility playlists for finding missing metadata):

      During interactive review, when you skip a playlist, you'll be asked if you want to add it to the never-sync list. Or manually edit neversync.txt in your playlist folder: Playlists listed here will be skipped during sync operations.

      NoComposerSP
      BitrateLessThan129SP
      UnratedSP

      Desktop Shortcut (Linux)

      Create a shell script on your desktop:

      #!/bin/bash

      Strawberry Playlist Sync

      ~/.local/share/strawberry/strawberry/strawberry-playlist-sync.py -s -p ~/Music/playlists -r

      Save as strawberry-playlist-sync.sh and make executable with chmod +x.

      Database Locations

      The script auto-detects Strawberry's database in these locations:

      Linux: ~/.local/share/strawberry/strawberry/strawberry.db macOS: ~/Library/Application Support/Strawberry/strawberry/strawberry.db Windows: ~/AppData/Local/strawberry/strawberry/strawberry.db

      Use --db-path to specify a custom location.

      Notes

      Safe to run with Strawberry open: The script only reads from the database (except for duplicate removal), so syncing while Strawberry is running is fine. For
      duplicate removal, close Strawberry first. Backups: Before overwriting any M3U file, a timestamped backup is created in a backups/ subfolder. M3U Format: Uses extended M3U with #EXTINF:seconds,Artist - Title lines. Path Handling: Automatically converts database file:// URLs to filesystem paths and handles URL-encoded characters.

      License

      Public domain / CC0. Use however you like.

      Created by me and Claude Code tonight.

    • Z

      Tidal Asset is not ready for playback (401) (4005) for some tracks

      Technical Help
      • • • zapf2000
      6
      0
      Votes
      6
      Posts
      5.2k
      Views

      B

      @fruity Changing to playbackinfopostpaywall worked for me on Ubuntu 18.04 (bionic) after I installed gstreamer-plugins-bad e.g. sudo apt-get install gstreamer1.0-plugins-bad

    • D

      How to play .dsf files

      Technical Help
      • • • Dennis845
      6
      1
      Votes
      6
      Posts
      4.8k
      Views

      T

      Answer from taglib,
      Hi Ton,

      As far as I know, DSDIFF/DSF was never part of an official TagLib release.

      It was merged into master (2018-10-27, d71398c9), but it was later
      removed (2019-09-12, 074f30e3) with the commit message

      Remove DSF and DSDIFF from master to a feature branch

      These can be merged back into master once they're in a more mature state.

      @Scott: Can you tell us what exactly were the problems which led to
      this removal?

      The code still exists in the taglib2 branch. It is not difficult to
      include support for a new tag format in a project which is using
      TagLib, that code does not have to be part of TagLib, so the
      Strawberry Musicplayer could add DSF support to its source code. I did
      this myself for https://invent.kde.org/multimedia/kid3/, but I used
      another implementation from https://github.com/pekingduck/metadsf
      (2015-03-11, 18687eb2), and I had to add a few fixes based on bug
      reports from users, so an alternative to the stuff in the taglib2
      branch could be the src/plugins/taglibmetadata/taglibext/dsf folder in
      the Kid3 sources.

      Jonas, was this helpful?

    • D

      Gapless playback

      Technical Help
      • • • drbldrbl
      6
      1
      Votes
      6
      Posts
      2.6k
      Views

      J

      The gap may be inserted during compression/encoding: https://en.wikipedia.org/wiki/Gapless_playback#Compression_artifacts

    • T

      Tidal API Token

      Technical Help
      • • • timswaine
      6
      1
      Votes
      6
      Posts
      4.2k
      Views

      S

      @fenixfeniks Hi, I am new here & this is my first post.
      I use Strawberry on Windows 10.
      Can somebody help me getting Tidal to work in Strawberry on Windows 10 Pro.
      Software & Drivers fully updated, if that means anything.

    • threearmedcowT

      Save star rating to file / read star rating from file

      Technical Help
      • metadata rating mp3 • • threearmedcow
      6
      0
      Votes
      6
      Posts
      3.2k
      Views

      jonasJ

      @threearmedcow
      The rating in Strawberry is from 0.0 to 1.0. A half star is 0.1. So 5 stars would be 1.0.

      There are no standardized tags for rating. How the rating are saved to tags depends on the audio file format and the software.
      One software can behave one way, and another can behave very differently when it comes to ratings. Another software might use an entirely different tag, and save ratings differently.
      So comparing software to see if the rating of stars is read correctly don't always expect to see the same result.

      However, when I see you mention some numbers with "192" and "255" I'm only guessing that it could be the POPM tag popularimeter frame for ID3v2 which are not really ratings, but commonly used to store ratings. These are saved by Strawberry too but converted from the rating, 192 should be converted to 0.8 (4 stars), 255 should be 5 stars.
      I think it's mostly the same as described by wikipedia. See: https://en.wikipedia.org/wiki/ID3#ID3v2_star_rating_tag_issue
      Another software might convert these differently though. So might treat both 192 and 255 as 5 stars. But it's hard for me to answer for another software I have no knowledge of. And you don't even mention what audio file format it is. If you saved the rating with strawberry for both files, I'm not really sure how they could be saved with different values.
      Other formats that use Vorbis comments uses very different tags, does not have standardized ratings tag either, and no POPM tag.

      For MP3 ID3v2 Strawberry saves a "FMPS_Rating" with the 0.0-1.0 rating too.
      I found that Strawberry was writing the FMPS_Rating for MP3 but not reading it back, so it was always converting the POPM tag. Should be fixed now, so if the FMPS_Rating frame exists, it will use that instead of the POPM for rating, which will be more accurate for use in Strawberry. But the database rating will take priority, so if a rating exists in the database for the song, it won't re-read it from the tags.

    • S

      Can not add folder to strawberry collection

      Technical Help
      • • • sirga89
      6
      0
      Votes
      6
      Posts
      1.6k
      Views

      B

      @jonas I change it and nothing.
      Thanks

    • leifbkL

      Gentoo is ditching Clementine, recommends Strawberry as replacement

      General Discussion
      • • • leifbk
      6
      1
      Votes
      6
      Posts
      2.0k
      Views

      leifbkL

      @jonas I upgraded to 1.0.1 this morning, but I can't see any change. I've rescanned the collection and try to "remove unavailable tracks from playlist", but nothing happens, even if I know that there are hidden tracks there. Do I have to flush the playlist and start over?

    • T

      Error on Windows 7 "GetSystemTimePreciseAsFileTime"

      Technical Help
      • • • Tyco72
      6
      0
      Votes
      6
      Posts
      14.0k
      Views

      D

      where do i put the file

    • O

      Random playback

      Technical Help
      • • • oldwood
      6
      0
      Votes
      6
      Posts
      2.7k
      Views

      jonasJ

      I'm aware of the issue. The shuffle mode is somewhat broken.
      Bug report here: https://github.com/strawberrymusicplayer/strawberry/issues/707
      I will look more into it at some point.

    • L

      Strawberry (Flatpak version) not seeing Kvantum style

      Technical Help
      • • • ldxza
      6
      0
      Votes
      6
      Posts
      2.5k
      Views

      L

      @jonas Guess I'll have to stick to Clementine.

    • W

      Subsonic Seeking

      Technical Help
      • • • worble
      6
      0
      Votes
      6
      Posts
      2.3k
      Views

      W

      @jonas
      gstreamer 1.20.3 on Arch Linux

    • H

      Certain songs won't add to library

      Technical Help
      • • • half-fast
      6
      0
      Votes
      6
      Posts
      1.6k
      Views

      N

      @wengels464
      I tried the CUE sheet idea with my collection. Didn't work. Seems like strawberry simply won't add DSF files to the library, even if it can read the metadata (which, at least on my system, it does perfectly if I try playing a tagged DSF file from my file manager).

      Maybe there's some trick that I have yet to discover, though. If you have any luck with your own testing, do please post back here!

    • D

      Keeping albums with same names apart

      Technical Help
      • • • daveros13
      6
      0
      Votes
      6
      Posts
      1.4k
      Views

      D

      @jonas
      I've always had cover JPGs in the folders (never auto-downloaded), and this is the only app this has happened on! The folder you've directed me to also doesn't have cached covers (I'd already turned off that tickbox), just "strawberry.db".

      I can confirm that Cover Manager shows them separately with the correct covers in the big grid, so it really does seem to be the sidebar with albums as the list that has this issue -- see attached image (RSF are the top set of tracks):

      Right Said Fred cover on REM.png

    • S

      Ubuntu 22.10 - Package from Kinetic repo is crashing on launch with segfault

      Technical Help
      • • • smenard
      6
      0
      Votes
      6
      Posts
      739
      Views

      S

      @jonas Thank you for your help and dedication! Let's see how it goes on Ubuntu/Debian's side.

      As an additional information, I tried on a Debian test VM I had around, with LXQt installed, and Unstable repositories. It works without any issue.

      $ strawberry 22:14:52.825 INFO main:167 Strawberry 1.0.10 Qt "5.15.6" 22:14:52.825 INFO main:168 "Debian GNU/Linux bookworm/sid unknown - (linux 6.0.0-4-amd64) [x86_64]" 22:14:52.899 DEBUG main:227 Style: "fusion" 22:14:52.903 DEBUG Application:257 Database(0x561360481970) moved to thread QThread(0x561360485fa0) 22:14:52.903 DEBUG SCollection:70 CollectionBackend(0x561360469ce0) moved to thread QThread(0x561360485fa0) 22:14:52.936 DEBUG Application:257 AlbumCoverLoader(0x5613604ed250) moved to thread QThread(0x56136050b260) 22:14:52.939 DEBUG SCollection:107 CollectionWatcher(0x561360502750) moved to thread Thread(0x561360502030) with I/O priority 3 and thread priority 0 22:14:52.939 DEBUG TagReaderClient:56 Using 2 tagreader workers. 22:14:52.939 DEBUG Application:257 TagReaderClient(0x561360521740) moved to thread QThread(0x561360500090) 22:14:52.939 DEBUG NetworkProxyFactory:52 Detected system proxy URLs: ("", "", "", "") 22:14:52.940 DEBUG WorkerPool<HandlerType>:264 Using worker "/usr/libexec/strawberry-tagreader" 22:14:52.940 DEBUG WorkerPool<HandlerType>:309 Starting worker 0x7fd090ff9f30 "/usr/libexec/strawberry-tagreader" "/tmp/strawberry_510004701" 22:14:52.943 DEBUG WorkerPool<HandlerType>:309 Starting worker 0x7fd090ff9f30 "/usr/libexec/strawberry-tagreader" "/tmp/strawberry_1138396723" 22:14:52.950 INFO main:57 TagReader worker connecting to "/tmp/strawberry_510004701" 22:14:52.951 DEBUG WorkerPool<HandlerType>:331 Worker 0x7fd064007180 connected to "/tmp/strawberry_510004701" 22:14:52.952 INFO main:57 TagReader worker connecting to "/tmp/strawberry_1138396723" 22:14:52.952 DEBUG WorkerPool<HandlerType>:331 Worker 0x7fd064008d90 connected to "/tmp/strawberry_1138396723" 22:14:52.957 DEBUG Engine::Base:154 SOUP_FORCE_HTTP1: ON 22:14:52.976 WARN GlobalShortcutsManager:206 No global shortcuts enabled. 22:14:53.527 INFO Player:930 Registered URL handler for "subsonic" 22:14:53.533 DEBUG InternetServices:48 Added internet service "Subsonic" 22:14:53.533 INFO Player:930 Registered URL handler for "tidal" 22:14:53.549 DEBUG InternetServices:48 Added internet service "Tidal" 22:14:53.549 INFO Player:930 Registered URL handler for "qobuz" 22:14:53.565 DEBUG InternetServices:48 Added internet service "Qobuz" 22:14:54.567 DEBUG MainWindow:346 Starting 22:14:54.784 DEBUG CoverProviders:106 Registered cover provider "Last.fm" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "MusicBrainz" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "Discogs" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "Deezer" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "Musixmatch" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "Spotify" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "Tidal" 22:14:54.785 DEBUG CoverProviders:106 Registered cover provider "Qobuz" 22:14:54.801 DEBUG LyricsProviders:105 Registered lyrics provider "AudD" 22:14:54.801 DEBUG LyricsProviders:105 Registered lyrics provider "Genius" 22:14:54.801 DEBUG LyricsProviders:105 Registered lyrics provider "Lyrics.ovh" 22:14:54.801 DEBUG LyricsProviders:105 Registered lyrics provider "LoloLyrics" 22:14:54.802 DEBUG LyricsProviders:105 Registered lyrics provider "Musixmatch" 22:14:54.802 DEBUG LyricsProviders:105 Registered lyrics provider "ChartLyrics" 22:14:54.823 DEBUG MainWindow:397 Initializing player 22:14:54.926 DEBUG MainWindow:407 Creating models 22:14:54.926 DEBUG MainWindow:414 Creating models finished 22:14:54.929 DEBUG DeviceLister:67 CddaLister(0x5613609c7db0) moved to thread QThread(0x5613609d6ca0) 22:14:54.929 DEBUG DeviceLister:67 Udisks2Lister(0x56136094d640) moved to thread QThread(0x5613616a58c0) 22:14:55.055 DEBUG DeviceLister:67 GioLister(0x5613616a58e0) moved to thread QThread(0x5613607eec00) 22:14:55.058 DEBUG logging:85(GLib-GIO) Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3) 22:14:55.060 DEBUG Application:257 PlaylistBackend(0x5613607eb570) moved to thread QThread(0x561360485fa0) 22:14:55.064 DEBUG logging:85(GLib-GIO) Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3) 22:14:55.065 DEBUG Application:257 RadioBackend(0x56136193e3a0) moved to thread QThread(0x561360485fa0) 22:14:55.066 DEBUG RadioServices:67 Adding radio service: "SomaFM" 22:14:55.067 DEBUG logging:85(GLib-GIO) Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3) 22:14:55.067 DEBUG RadioServices:67 Adding radio service: "Radio Paradise" 22:14:55.068 DEBUG MainWindow:434 Creating UI 22:14:55.075 DEBUG logging:85(GLib-GIO) _g_io_module_get_default: Found default implementation gvfs (GDaemonVfs) for ‘gio-vfs’ 22:14:55.108 DEBUG ScrobblerServices:48 Registered scrobbler service "Last.fm" 22:14:55.108 DEBUG ScrobblerServices:48 Registered scrobbler service "Libre.fm" 22:14:55.108 DEBUG ScrobblerServices:48 Registered scrobbler service "ListenBrainz" 22:14:55.108 DEBUG ScrobblerServices:48 Registered scrobbler service "Subsonic" 22:14:55.262 DEBUG MainWindow:861 Creating playing widget 22:14:55.310 DEBUG MainWindow:913 Loading settings 22:14:55.728 DEBUG MainWindow:1044 Started QThread(0x561360306ff0) 22:14:55.736 INFO DeviceManager:449 Device added: "/dev/sr0" ("/dev/sr0")

      So maybe it is an Ubuntu (or KDE) specific bug.

    • C

      Strawberry kills browser audio

      Technical Help
      • • • crhwv
      6
      0
      Votes
      6
      Posts
      1.3k
      Views

      G

      @jonas Hello! I also have a similar problem, though with a different set up.

      Ubuntu 20.04 & 22.04 (Just upgraded- same problem on both distros)
      JDS Labs Element II DAC/Amp
      Brave & Firefox browsers

      Strawberry Backend Settings:
      Output to a sound card via ALSA
      Device JDS Labs Element II USB Audio

      hw:1,0

      ALSA plugin: hw selected, out of the following options

      hw plughw pcm

      I'm trying to play high resolution FLAC files (192khz/24bit), so I'd prefer to avoid downsampling to 48khz if possible.

      Thank you for your time, and thanks for the work you and the other developers put into strawberry- I wouldn't want to use anything else. 🙂
      -GarethFuller

    • P

      Raspberry Pi 4b using Ubuntu random stops using NAS

      Technical Help
      • • • Pappa Weasel
      6
      0
      Votes
      6
      Posts
      920
      Views

      P

      @jonas Found this website that help me resolve my issue.

      https://www.vuepilot.com/support/article/fixing-raspberry-pi-audio-issues/

      Simple fix. I hope this helps someone else who is having similar issues.