• Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Strawberry Music Player Forums
    2. OriNOVet
    3. Topics
    O
    • Profile
    • Following 0
    • Followers 0
    • Topics 10
    • Posts 20
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by OriNOVet

    • O

      How to organize/rename files/folders?

      Technical Help
      • • • OriNOVet
      1
      0
      Votes
      1
      Posts
      431
      Views

      No one has replied

    • O

      Sync from libre.fm?

      Technical Help
      • • • OriNOVet
      2
      0
      Votes
      2
      Posts
      414
      Views

      jonasJ

      @orinovet
      libre.fm uses a identical API, even the API key is the same. So all that needs to be done is to add a combobox where you can select between last.fm and libre.fm and it uses different config depending on which one you select, I think it's just the hostname and username that is different.
      The code is here:
      https://github.com/strawberrymusicplayer/strawberry/blob/master/src/dialogs/lastfmimportdialog.cpp
      https://github.com/strawberrymusicplayer/strawberry/blob/master/src/scrobbler/lastfmimport.cpp

    • O

      How to understanding "Organize Files"?

      General Discussion
      • • • OriNOVet
      1
      0
      Votes
      1
      Posts
      718
      Views

      No one has replied

    • O

      New extract SQL from Media Monkey

      Technical Help
      • • • OriNOVet
      1
      0
      Votes
      1
      Posts
      280
      Views

      No one has replied

    • O

      Define action doubleclick on Playlist/Smart Playlist

      Feature Suggestions
      • • • OriNOVet
      2
      0
      Votes
      2
      Posts
      327
      Views

      O

      Ahh found it. You can define the behavior in Tools > Settings > Behavior > Double click a song > Open in new playlist

    • O

      Song not scrobbled

      Technical Help
      • last.fm libre.fm scrobble • • OriNOVet
      2
      0
      Votes
      2
      Posts
      355
      Views

      O

      Found the problem. Offline mode was enabled for some reason. Is there some way to scrobble the songs during offline mode again?

    • O

      Sync/Transfer songs to Android?

      General Discussion
      • • • OriNOVet
      2
      0
      Votes
      2
      Posts
      974
      Views

      O

      I really have no idea, how i can get the titles of the current playlist to my device. I have read some topics about MTP. As a result, I have disabled automount for MTP and any other USB device. If i now doubleclick the Android device, something accesses the device and counts the media. But i cant open the device. If i rightclick and choose "device settings", the spinner loads now since 1 hour without an end. If i rightclick a song 2 minute mp3 file and choose "copy to device" and select OK in the dialog, i get "organize files" in the statusbar... also for ever... but nothing is transfered. The device is not mounted and never was in this session... Im a little bit clueless. How can i transfer the songs to my device?

    • O

      Multiple sorts when using smart playlist

      Comments & Feedback
      • • • OriNOVet
      2
      2
      Votes
      2
      Posts
      548
      Views

      ben2talkB

      @OriNOVet Aha, they can be tricky.

      Search terms 'Last Played' I set this to 'not in the last year' and after >Next 'Sort songs by Last Played oldest first', only showing the first 20, and dynamic playback enabled.

    • O

      Edit database manually

      Technical Help
      • • • OriNOVet
      2
      0
      Votes
      2
      Posts
      249
      Views

      O

      Ahh got it to work. I have to refresh the opened playlist. Then the imported dates are visible. If someone needs the export SQL from Media Monkey to Strawberry:

      SELECT SongPath, Artist, Album, AlbumArtist, TrackNumber, DiscNumber, SongTitle, PlayCounter, strftime('%s', datetime(LastTimePlayed + 2415019.0)) as lastplayed FROM Songs WHERE LastTimePlayed > 0;

      Media Monkey uses juliandate to save the date. I export the other fields additionally, to match the fields in Strawberry and find the correct songs. Form the returned entrys, i create the above UPDATE statement for Strawberry:

      UPDATE `songs` SET `lastplayed` = 1631919400, `playcount` = 4 WHERE `artist` = "Some Artist" AND `album` = "Some album" AND `track` = 5 AND `title` = "some title";
    • O

      Import last played timestamp

      Technical Help
      • sync last.fm media monkey timestamp playcount • • OriNOVet
      2
      0
      Votes
      2
      Posts
      404
      Views

      O

      I found in "Tools" an entry to import this data from last.fm, which works as expected. Is there a way to use libre.fm, instead of last.fm?