Search found 35 matches

by serendip1959
Tue Sep 21, 2021 2:48 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: [REQ] Support for IOS 15 beta [#18060]
Replies: 14
Views: 3906

Re: [REQ] Support for IOS 15 beta [#18060]

This plugin seems to work fine with IOS15 on an iPhone 7.
by serendip1959
Sat Jan 23, 2021 4:33 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Apple Sound Check Not Working
Replies: 7
Views: 2533

Re: Apple Sound Check Not Working

He has an X to my 7 :( Digging around the problem has been around in some form since 2017 at least and not just iPhone. https://www.reddit.com/r/AppleMusic/comments/7y3yby/soundcheck_in_the_ios_app_is_broken_and_has_been/ https://www.reddit.com/r/HomePod/comments/fprdzd/is_it_me_or_is_sound_check_an...
by serendip1959
Fri Jan 22, 2021 1:12 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Apple Sound Check Not Working
Replies: 7
Views: 2533

Re: Apple Sound Check Not Working

Hi, My son has a iPhone running 14.3 and Sound Check is working for him, but he doesn't use MM. Not sure if this helps: 1. Go to Devices -> Phone -> Music 2. Add Track Volume column to view 3. Track volume column shows -1 Db or 0.0 Db for all entries 4. Sync a track using Send To 5. Track volume col...
by serendip1959
Mon Jan 18, 2021 5:17 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Apple Sound Check Not Working
Replies: 7
Views: 2533

Apple Sound Check Not Working

Hi, With a track with a significant track volume adjustment in MM there is no change in perceived volume when on an iPhone 7 IOS 14.3 Sound Check is toggled on/off. Two tracks, one with +13 dB adjustment, and another with -12 dB adjustment, no change in volume when Sound Check toggled on and off. Ot...
by serendip1959
Sun Sep 20, 2020 11:38 am
Forum: Need Help with Device Synchronization? (MMW4)
Topic: [FIXED] suddenly MM will not sync with iPhone via Installed (non-app) iTunes [#16934]
Replies: 66
Views: 18328

Re: suddenly MM will not sync with iPhone via Installed (non-app) iTunes

Confirmed with MM5 Build 2267. Running on Win 10 x64. iPhone 7 IOS14 does not register in MM with iTunes Version 12.10.9.3 64 bit installed. Either not visible in MM side bar or asks for non-app iTunes to be installed. I usually wait for new IOS versions to be explicitly supported by MM, forgot this...
by serendip1959
Fri Aug 21, 2020 4:41 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Database Change Build 2261
Replies: 10
Views: 1753

Re: Database Change Build 2261

Thanks. The server was accessible using a drive letter but not as a UNC path. There was a hidden window prompting for network credentials that closed with MM.
by serendip1959
Fri Aug 21, 2020 3:31 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Database Change Build 2261
Replies: 10
Views: 1753

Re: Database Change Build 2261

Not resolved in Build 2264. Add custom location to Ini file as DBName=\\MediaServer\Media\Media Monkey\MM5.DB in System group. Launch MM5 Build 2264 and entry is deleted from Ini file. This doesn't happen on another PC, the custom DB path is respected. However, MM5 has been running on that machine f...
by serendip1959
Thu Aug 06, 2020 11:35 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Database Change Build 2261
Replies: 10
Views: 1753

Re: Database Change Build 2261

Thanks, I will look out for 2263
by serendip1959
Thu Aug 06, 2020 2:19 am
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Database Change Build 2261
Replies: 10
Views: 1753

Re: Database Change Build 2261

Not a portable installation. A further update. I have installed MM5 on a new laptop. The database is on a NAS drive so it can be accessed by both desktop and laptop. Not been a problem as long as I don't have both running at the same time. Laptop died so I have a new one. Installed MM5, then tried i...
by serendip1959
Wed Jul 22, 2020 4:53 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Database Change Build 2261
Replies: 10
Views: 1753

Re: Database Change Build 2261

Hi, Installed in standalone mode. This is not the first time using MM5, I have been running it for quite a few months now. Originally I had the MM4 database in a custom location, and an early MM5 install converted it in-situ so MM4 no longer worked. Not a problem. As you suggest the custom path and ...
by serendip1959
Tue Jul 21, 2020 2:57 pm
Forum: Beta testing, bugs, and feature requests - MMW5
Topic: Database Change Build 2261
Replies: 10
Views: 1753

Database Change Build 2261

Installed build 2261 to find database empty. Investigation showed that on first running MM changes the DB path in the configuration file to point to MM5 irrespective of if a different name was used. Some time back MM5 converted my MM4 database in situ retaining the name, but in MM5 format. This data...
by serendip1959
Sat Apr 04, 2020 12:58 pm
Forum: MediaMonkey 5 developer forum
Topic: List Update
Replies: 6
Views: 4550

Re: List Update

Doh! Right in front of me. Thanks, don't know how many times I looked at that. Great tip about fast for each.
by serendip1959
Sat Apr 04, 2020 10:18 am
Forum: MediaMonkey 5 developer forum
Topic: List Update
Replies: 6
Views: 4550

Re: List Update

Take a look at this. I am using 2238. var list; list = app.db.getTracklist("SELECT * FROM Songs WHERE Artist = '" + artist + "' AND Album = '" + album + "' AND SongTitle = '" + track + "'", -1) list.whenLoaded().then(async function () { if (list.count === 0) {...
by serendip1959
Sat Apr 04, 2020 7:48 am
Forum: MediaMonkey 5 developer forum
Topic: List Update
Replies: 6
Views: 4550

Re: List Update

I am updating play count and last played.

I have tried both track.commitAsync and list.commitAsync without success. I also tried creating an empty track list interface and then addList with the same result. The main window updates but nothing is written to the database.
by serendip1959
Sat Apr 04, 2020 3:13 am
Forum: MediaMonkey 5 developer forum
Topic: List Update
Replies: 6
Views: 4550

List Update

If I call: list = app.db.getTracklist(<SQL SELECT>, -1) list.whenLoaded().then(function () { A list is returned. but if I edit the list and then call list.commitAsync; The main window updates with the changes, but they are not committed to the database. When MM is reloaded the changes are undone.