Tuesday, March 18, 2025

mediaanalysisd reading/writing a lot of data in the background in MacOS Sequoia

This might be a bug in MacOS Sequoia version 15.3.2 or possibly earlier, but I started noticing a lot of disk access on my external drives in a Thunderbolt array.  Looking at Activity Monitor, it looked like mediaanalysisd was reading and writing an unusually large amount of data.  Running the Console application to see the log file, there appeared to be a lot of errors about medianalysisd failing to decode the first frame of an image, but the filename was displaying as <private>.  In order to see the filenames in the log, I had to create and install a special custom Device Management profile (reference https://superuser.com/questions/1311578/in-console-app-how-can-i-reveal-to-what-private-tags-are-actually-referring).  In case that link goes away, create a file called something like PrivateLogViewer.mobileconfig with this in it:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>PayloadContent</key>
  <array>
    <dict>
      <key>PayloadDisplayName</key>
      <string>ManagedClient logging</string>
      <key>PayloadEnabled</key>
      <true/>
      <key>PayloadIdentifier</key>
      <string>com.apple.logging.ManagedClient.1</string>
      <key>PayloadType</key>
      <string>com.apple.system.logging</string>
      <key>PayloadUUID</key>
      <string>ED5DE307-A5FC-434F-AD88-187677F02222</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      <key>System</key>
      <dict>
        <key>Enable-Private-Data</key>
        <true/>
      </dict>
    </dict>
  </array>
  <key>PayloadDescription</key>
  <string>Enable Unified Log Private Data logging</string>
  <key>PayloadDisplayName</key>
  <string>Enable Unified Log Private Data</string>
  <key>PayloadIdentifier</key>
  <string>C510208B-AD6E-4121-A945-E397B61CACCF</string>
  <key>PayloadRemovalDisallowed</key>
  <false/>
  <key>PayloadScope</key>
  <string>System</string>
  <key>PayloadType</key>
  <string>Configuration</string>
  <key>PayloadUUID</key>
  <string>D30C25BD-E0C1-44C8-830A-964F27DAD4BA</string>
  <key>PayloadVersion</key>
  <integer>1</integer>
</dict>
</plist>

Then double click on the file and go to System Settings->General->Device Management and temporarily enable it.

To find the problematic files, run something like from a Terminal window:

log show --last 25m |grep mediaanalysisd |grep -i file:

 Most of the problematic files were old Quicktime MOV files that were encoded using obsolete codecs such as Sorenson or Cinepak.  I used ffmpeg to convert them to h.264.  For example, a little Perl script like:

#!/usr/bin/perl -w

my $in = $ARGV[0] or die;
my $tmp = "$$.mov";
my $cmd = qq[ffmpeg -i '$in' -c:v h264_videotoolbox -q:v 65 -c:a copy /tmp/$tmp];
system($cmd);
system("mv /tmp/$tmp '$in'");


Once the problematic files have been converted or deleted, go back to the Device Management settings and remove that profile that enables private data logging.


Friday, March 07, 2025

UniFi Cloud Gateway Ultra and Google Fiber

I just setup a Ubiquiti UniFi Cloud Gateway Ultra (UCG-Ultra) to replace a Ubiquiti EdgeRouter 4. There were no problems with the EdgeRouter, but I wanted some of the additional network management functions found in a UniFi gateway.

I have the 1 Gig plan with Google Fiber. Doing a speed test using Ookla's Speedtest app in my Mac was yielding around 700 Mbps download whereas I was getting about 930 Mbps using the EdgeRouter.  I was able to fix the problem by changing the WAN port 1 Gbps FDX.  By default it was set to auto-negotiate and appeared to be negotiating at 2.5 Gbps to the Fiber Jack (ONT).  The mismatch between the service speed and the ethernet speed must have caused the slowdown since I'm now seeing my expected speeds.

Saturday, July 05, 2014

Captions from iPhoto

I hadn't noticed this before, but doing a file export out of iPhoto and selecting the kind as JPEG allows the caption/description and keywords to be saved into the IPTC metadata of the exported files.

If the IPTC caption doesn't appear, it might need to be re-written:


exiftool -iptc:all= -tagsfromfile @ -all:all -unsafe .

Saturday, August 17, 2013

Plants vs Zombies 2 iOS save game syncing

My user profile was not synching between my iPad and iPhone in Plants vs Zombies 2.  I was eventually able to get it to sync by using iFunBox to copy the com.popcap.ios.PvZ2.plist file from /var/mobile/Applications/<PvZ2_folder_of_your_device>/Library/Preferences to my computer from my iPad and then copying it to the iPhone.  The player ID codes in iOS > Settings > PvZ 2 should match on all devices.

The synchronization is not instantaneous.  It seems to take a couple of minutes.  I'm not sure if the synchronization only occurs while waiting on the main menu.

There is a thread about this problem here.

Update:  This doesn't appear to work consistently.


Tuesday, November 20, 2012

iPad time since last full charge

I hadn't noticed this until now, but on my iPad under Settings->General->Usage, it now displays the time since last full charge.  It appears this was added in iOS 6.0.  It used to bug me that this only appeared on my iPhone in prior iOS versions.

Tuesday, October 02, 2012

Making high definition DVDs on a Mac


Final Cut Pro X (with Compressor) can burn a high definition video by exporting as Blu-ray and then burning directly to a DVD-R as an AVCHD disc. I prefer to save to disc images instead of burning directly.  Unfortunately, when Compressor burns to a Blu-ray disc image and then that disc image is burned to a DVD, it is not playable on the PS3 (it reads it as a data disc).

But, there is a way to turn the Blu-ray disc image into an AVCHD disc.  First, install Wineskin Winery from here (http://wineskin.urgesoftware.com).  Then download multiAVCHD (http://multiavchd.deanbg.com/) and ImgBurn (http://www.imgburn.com/) and install both in a Wineskin wrapper.  The executable that should be launched by the wrapper is multiBOOT.exe. Launch the multiAVCHD wrapper.  In the settings tab, check "Use ImgBurn with DVD/BD-R output" and "Use ImgBurn ISO mode". Load the disc image that was created by Compressor and then click Start.  Choose AVCHD Disc as the output format.  multiAVCHD will do its magic (changing the header of index.bdmv to INDX0100 and the header of MovieObject.bdmv to MOBJ0100, etc). It will then launch ImgBurn.  Change the label of the volume and be sure not to include the Certificates folder.

The AVCHD ISO that is created can then be burned to a DVD and will be playable on the PS3.

Monday, October 01, 2012

Strange router problem


My router (Cisco WRT-320N) kept getting into what appeared to be a reboot loop. Resetting the router firmware and swapping out the router with my backup (same model and version of dd-wrt) didn't help.  Eventually I discovered that if I detached the ethernet cable from the cable modem, the router would stay up until I reattached it.  Since that didn't make any sense, I tried swapping out power supplies.  That fixed the problem.  I'm not sure why the power supply would only flake out when the router was attached to the cable modem.