Skip to content

Instantly share code, notes, and snippets.

@dbrookman
Last active April 26, 2024 18:28
Show Gist options
  • Star 81 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save dbrookman/74b8bcfb37a23452f7137b83bca9580f to your computer and use it in GitHub Desktop.
Save dbrookman/74b8bcfb37a23452f7137b83bca9580f to your computer and use it in GitHub Desktop.
How to build mpv & mpv.app on an Apple silicon Mac

Preparations

Before you can build mpv & mpv.app on an Apple silicon Mac, there's a couple of required dependencies you'll need to install if you haven't already:

  1. Go to System Preferences > Software Update. If there's anything there to update, do it.

  2. If you don't have the Xcode Command Line Tools installed, run xcode-select --install and select Install on the prompt that appears.

  3. If you don't have Homebrew installed, follow the instructions here.

  4. If you don't have all of mpv's dependencies installed, run brew install --build-from-source --only-dependencies mpv && brew install libplacebo.

You'll also need a local copy of the mpv repo, which you can get by running git clone https://github.com/mpv-player/mpv.

You can now run the attached script to build mpv & mpv.app on an Apple silicon Mac yourself. Just make sure to run it from the root directory of the cloned repo.

Static Build

If you want to bundle a static build of mpv.app, perform these steps following the ones above.

  1. Run brew install dylibbundler.

  2. Run the script from the root directory of the cloned repo, but append --static to the command, like ./build-mpv_silicon.sh --static.


Updating

Going forward, you can update your local copy of the repo by running the following commands from its root directory:

git reset --hard
git clean --force -d -x
git pull origin master
#!/usr/bin/env bash
# Builds mpv & mpv.app on Apple silicon Macs.
# Run this script from the root directory of the mpv repo.
# if anything fails, gtfo
set -ex
meson setup build
meson compile -C build
# test the binary we just built
./build/mpv --version
./TOOLS/osxbundle.py --skip-deps build/mpv
if [[ $1 == "--static" ]]; then
dylibbundler --bundle-deps --dest-dir build/mpv.app/Contents/MacOS/lib/ --install-path @executable_path/lib/ --fix-file build/mpv.app/Contents/MacOS/mpv
# test the app binary to make sure all the dylibs made it okay
./build/mpv.app/Contents/MacOS/mpv --version
fi
@ddiaconu21
Copy link

For Sonoma work solution

rm build/mpv.app/Contents/MacOS/mpv-bundle
mv build/mpv.app/Contents/MacOS/mpv build/mpv.app/Contents/MacOS/mpv-bundle
ln -s mpv-bundle build/mpv.app/Contents/MacOS/mpv
codesign --force --deep -s - build/mpv.app

I managed to fix everything by reinstalling sonoma. I think I might have messed up the python configuration

@Akczht
Copy link

Akczht commented Sep 27, 2023

mpv was insta crashing for me too, after updating to sonoma.

@PsyPryss
Copy link

PsyPryss commented Sep 28, 2023

I get this when I run the script.
mpv works via command line but can't make the .app

The Meson build system
Version: 1.2.1
Source dir: /opt/homebrew/Cellar/mpv
Build dir: /opt/homebrew/Cellar/mpv/build
Build type: native build
Project name: mpv
Project version: 0.36.0-UNKNOWN
C compiler for the host machine: cc (clang 15.0.0 "Apple clang version 15.0.0 (clang-1500.0.40.1)")
C linker for the host machine: cc ld64 1015.7
Host machine cpu family: aarch64
Host machine cpu: aarch64
Program python3 found: YES (/Library/Frameworks/Python.framework/Versions/3.11/bin/python3)
Did not find pkg-config by name 'pkg-config'
Found Pkg-config: NO
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libavcodec found: NO (tried framework)

meson.build:19:13: ERROR: Dependency lookup for libavcodec with method 'pkgconfig' failed: Pkg-config binary for machine 1 not found. Giving up.

A full log can be found at /opt/homebrew/Cellar/mpv/build/meson-logs/meson-log.txt

And also, where should the repository be downloaded to?

Thanks.

@patrickchoi
Copy link

For Sonoma work solution

rm build/mpv.app/Contents/MacOS/mpv-bundle
mv build/mpv.app/Contents/MacOS/mpv build/mpv.app/Contents/MacOS/mpv-bundle
ln -s mpv-bundle build/mpv.app/Contents/MacOS/mpv
codesign --force --deep -s - build/mpv.app

This worked for me, thank you

@nwparker
Copy link

Doesn't work for me.
Tried building w/ w/o static
Tried w w/o signing
🤷

@alphagumibear
Copy link

Doesn't work for me. Tried building w/ w/o static Tried w w/o signing 🤷

I tried it last night and got it to work. Where do you get hung up?

@nwparker
Copy link

nwparker commented Oct 13, 2023

Doesn't work for me. Tried building w/ w/o static Tried w w/o signing 🤷

I tried it last night and got it to work. Where do you get hung up?

Thanks for the reply.

It seems to build fine (build log below)

Build log
nil-mba:mpv nwparker$ ./build-mpv_silicon.sh 
+ meson setup build
The Meson build system
Version: 1.2.2
Source dir: /Users/nwparker/projects/mpv
Build dir: /Users/nwparker/projects/mpv/build
Build type: native build
Project name: mpv
Project version: 0.36.0-UNKNOWN
C compiler for the host machine: cc (clang 15.0.0 "Apple clang version 15.0.0 (clang-1500.0.40.1)")
C linker for the host machine: cc ld64 1015.7
Host machine cpu family: aarch64
Host machine cpu: aarch64
Program python3 found: YES (/opt/homebrew/bin/python3)
Found pkg-config: /opt/homebrew/bin/pkg-config (0.29.2)
Run-time dependency libavcodec found: YES 60.3.100
Run-time dependency libavfilter found: YES 9.3.100
Run-time dependency libavformat found: YES 60.3.100
Run-time dependency libavutil found: YES 58.2.100
Run-time dependency libswresample found: YES 4.10.100
Run-time dependency libswscale found: YES 7.1.100
Run-time dependency libass found: YES 0.17.1
Compiler for C supports arguments -Werror=implicit-function-declaration: YES 
Compiler for C supports arguments -Wno-error=deprecated-declarations: YES 
Compiler for C supports arguments -Wno-error=unused-function: YES 
Compiler for C supports arguments -Wempty-body: YES 
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wno-format-zero-length: YES 
Compiler for C supports arguments -Wno-redundant-decls: YES 
Compiler for C supports arguments -Wvla: YES 
Compiler for C supports arguments -Wno-format-truncation: NO 
Compiler for C supports arguments -Wimplicit-fallthrough: YES 
Compiler for C supports arguments -fno-math-errno: YES 
Compiler for C supports arguments -Wformat -Werror=format-security: YES 
Compiler for C supports link arguments -Wl,-z,noexecstack: NO 
Compiler for C supports link arguments -Wl,--nxcompat,--no-seh,--dynamicbase: NO 
Run-time dependency dl found: YES
Compiler for C supports link arguments -rdynamic: YES 
Run-time dependency threads found: YES
Run-time dependency appleframeworks found: YES (Cocoa, IOKit, QuartzCore)
Checking for function "ppoll" : NO 
Library windowsapp skipped: feature uwp disabled
Checking for function "glob" : YES 
Header "sys/vt.h" has symbol "VT_GETMODE" : NO 
Header "sys/consio.h" has symbol "VT_GETMODE" : NO 
Checking for function "fstatfs" : YES 
Checking for function "fstatfs" : NO 
Checking if "vector check" compiles: YES 
Program /Users/nwparker/projects/mpv/TOOLS/docutils-wrapper.py found: YES (/Users/nwparker/projects/mpv/TOOLS/docutils-wrapper.py)
Program /Users/nwparker/projects/mpv/TOOLS/file2string.py found: YES (/Users/nwparker/projects/mpv/TOOLS/file2string.py)
Program /Users/nwparker/projects/mpv/TOOLS/matroska.py found: YES (/Users/nwparker/projects/mpv/TOOLS/matroska.py)
Dependency libcdio_paranoia skipped: feature cdda disabled
Dependency dvdnav skipped: feature dvdnav disabled
Dependency dvdread skipped: feature dvdnav disabled
Run-time dependency iconv found: YES
Run-time dependency mujs found: YES 1.3.3
Run-time dependency lcms2 found: YES 2.15
Found CMake: /opt/homebrew/bin/cmake (3.27.7)
Run-time dependency libarchive found: NO (tried pkgconfig, framework and cmake)
Run-time dependency libavdevice found: YES 60.1.100
Run-time dependency libbluray found: YES 1.3.4
Library m found: YES
Library rt found: NO
Run-time dependency lua found: YES 5.1.5
Run-time dependency rubberband found: YES 3.3.0
Dependency sdl2 skipped: feature sdl2 disabled
Library atomic found: NO
Header "stdatomic.h" has symbol "atomic_int" with dependency -latomic: YES 
Run-time dependency uchardet found: YES 0.0.8
Run-time dependency vapoursynth found: YES 64
Run-time dependency vapoursynth-script found: YES 64
Run-time dependency zimg found: YES 3.0.5
Run-time dependency zlib found: YES 1.2.11
Run-time dependency alsa found: NO (tried pkgconfig, framework and cmake)
Run-time dependency appleframeworks found: YES (Foundation, AudioToolbox)
Header "AudioToolbox/AudioToolbox.h" has symbol "kAudioUnitSubType_RemoteIO" : NO 
Run-time dependency appleframeworks found: YES (CoreFoundation, CoreAudio, AudioUnit, AudioToolbox)
Run-time dependency jack found: NO (tried pkgconfig, framework and cmake)
Dependency openal skipped: feature openal disabled
Library OpenSLES found: NO
Header "sys/soundcard.h" has symbol "SNDCTL_DSP_HALT" : NO 
Run-time dependency libpipewire-0.3 found: NO (tried pkgconfig, framework and cmake)
Run-time dependency libpulse found: NO (tried pkgconfig, framework and cmake)
Run-time dependency sndio found: NO (tried pkgconfig, framework and cmake)
Header "audioclient.h" has symbol "IAudioClient" : NO 
Run-time dependency caca found: NO (tried pkgconfig, framework and cmake)
Has header "d3d9.h" skipped: feature direct3d disabled
Run-time dependency libdrm found: NO (tried pkgconfig, framework and cmake)
Run-time dependency gbm found: NO (tried pkgconfig, framework and cmake)
Run-time dependency libjpeg found: YES 3.0.0
Run-time dependency libplacebo found: NO (tried pkgconfig, framework and cmake)
Run-time dependency shaderc found: NO (tried pkgconfig, pkgconfig, pkgconfig and system)
Run-time dependency libsixel found: NO (tried pkgconfig, framework and cmake)
Checking for function "shm_open" : YES 
Run-time dependency spirv-cross-c-shared found: NO (tried pkgconfig, framework and cmake)
Run-time dependency wayland-client found: NO (tried pkgconfig, framework and cmake)
Run-time dependency wayland-cursor found: NO (tried pkgconfig, framework and cmake)
Run-time dependency wayland-protocols found: NO (tried pkgconfig, framework and cmake)
Run-time dependency xkbcommon found: NO (tried pkgconfig, framework and cmake)
Run-time dependency wayland-client found: NO (tried pkgconfig, framework and cmake)
Has header "linux/input-event-codes.h" with dependency wayland-client: NO 
Program wayland-scanner found: NO
Run-time dependency x11 found: YES 1.8.7
Run-time dependency xscrnsaver found: NO (tried pkgconfig, framework and cmake)
Run-time dependency xext found: YES 1.3.5
Run-time dependency xpresent found: NO (tried pkgconfig, framework and cmake)
Run-time dependency xrandr found: NO (tried pkgconfig, framework and cmake)
Dependency xv skipped: feature xv disabled
Run-time dependency appleframeworks found: YES (OpenGL)
Library EGL found: NO
Run-time dependency egl found: NO (tried pkgconfig, framework and cmake)
Library EGL skipped: feature egl-android disabled
Run-time dependency wayland-egl found: NO (tried pkgconfig, framework and cmake)
Dependency /opt/vc/lib/pkgconfig/brcmegl.pc skipped: feature rpi disabled
Dependency vulkan skipped: feature vulkan disabled
Checking for function "vkCreateDisplayPlaneSurfaceKHR" with dependency vulkan: NO 
Run-time dependency ffnvcodec found: NO (tried pkgconfig, framework and cmake)
Header "OpenGLES/ES3/glext.h" has symbol "GL_RGB32F" : NO 
Dependency /opt/vc/lib/pkgconfig/mmal.pc skipped: feature rpi-mmal disabled
Run-time dependency libva found: NO (tried pkgconfig, framework and cmake)
Dependency libva-drm skipped: feature vaapi-drm disabled
Dependency libva-wayland skipped: feature vaapi-wayland disabled
Dependency libva-x11 skipped: feature vaapi-x11 disabled
Dependency vdpau skipped: feature vdpau disabled
Program /Users/nwparker/projects/mpv/TOOLS/macos-sdk-version.py found: YES (/Users/nwparker/projects/mpv/TOOLS/macos-sdk-version.py)
Message: Detected macOS sdk path: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk
Message: Detected macOS SDK: 14.0

meson.build:1508: WARNING: add_languages is missing native:, assuming languages are wanted for both host and build.
Objective-C compiler for the host machine: cc (clang 15.0.0)
Objective-C linker for the host machine: cc ld64 1015.7
Program xcrun found: YES (/usr/bin/xcrun)
Program /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift found: YES (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift)
Message: Detected Swift version: 5.9
Program /Users/nwparker/projects/mpv/TOOLS/macos-swift-lib-directory.py found: YES (/Users/nwparker/projects/mpv/TOOLS/macos-swift-lib-directory.py)
Message: Detected Swift library directory: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx
Has header "AppKit/NSTouchBar.h" : YES 
Program rst2man found: YES (/opt/homebrew/bin/rst2man)
Program rst2html rst2html.py skipped: feature html-build disabled
Program rst2pdf skipped: feature pdf-build disabled
Configuring config.h using configuration
Message: List of enabled features: av-channel-layout avif-muxer bsd-fstatfs build-date cocoa coreaudio cplugins darwin debug ffmpeg gl gl-cocoa glob glob-posix gpl iconv javascript jpeg jpegxl lavu-uuid lcms2 libass libavdevice libbluray libdl libm lua macos-cocoa-cb macos-media-player macos-touchbar manpage-build osx-thread-name posix posix-shm rubberband rubberband-3 stdatomic threads uchardet vapoursynth vector videotoolbox-gl zimg zimg-st428 zlib
Fetching value of define "MPV_CLIENT_API_VERSION" : (((2) << 16) | (2) | 0UL) 
Compiler for C supports link arguments -Wl,-Bsymbolic: NO 
Build targets in project: 24

mpv 0.36.0-UNKNOWN

    d3d11     : NO
    gpu-next  : NO
    javascript: YES
    libmpv    : NO
    lua       : YES
    opengl    : YES
    vulkan    : NO
    wayland   : NO
    x11       : NO

Found ninja-1.11.1 at /opt/homebrew/bin/ninja
+ meson compile -C build
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /opt/homebrew/bin/ninja -C /Users/nwparker/projects/mpv/build
ninja: Entering directory `/Users/nwparker/projects/mpv/build'
[22/236] Generating osdep/swift_targets with a custom command
../osdep/macos/libmpv_helper.swift:127:13: warning: 'glGetIntegerv' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
            glGetIntegerv(GLenum(GL_DRAW_FRAMEBUFFER_BINDING), &i)
            ^
../osdep/macos/libmpv_helper.swift:148:13: warning: 'glClearColor' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
            glClearColor(0, 0, 0, 1)
            ^
../osdep/macos/libmpv_helper.swift:149:13: warning: 'glClear' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
            glClear(GLbitfield(GL_COLOR_BUFFER_BIT))
            ^
../osdep/macos/libmpv_helper.swift:152:20: warning: 'CGLFlushDrawable' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
        if !skip { CGLFlushDrawable(ctx) }
                   ^
../osdep/macos/swift_extensions.swift:38:55: warning: 'kIOMasterPortDefault' was deprecated in macOS 12.0: renamed to 'kIOMainPortDefault'
            let result = IOServiceGetMatchingServices(kIOMasterPortDefault, matching, &iter)
                                                      ^
../osdep/macos/swift_extensions.swift:38:55: note: use 'kIOMainPortDefault' instead
            let result = IOServiceGetMatchingServices(kIOMasterPortDefault, matching, &iter)
                                                      ^~~~~~~~~~~~~~~~~~~~
                                                      kIOMainPortDefault
../video/out/mac/common.swift:307:47: warning: 'kIOMasterPortDefault' was deprecated in macOS 12.0: renamed to 'kIOMainPortDefault'
        let srv = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("AppleLMUController"))
                                              ^
../video/out/mac/common.swift:307:47: note: use 'kIOMainPortDefault' instead
        let srv = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("AppleLMUController"))
                                              ^~~~~~~~~~~~~~~~~~~~
                                              kIOMainPortDefault
../video/out/mac/common.swift:313:54: warning: 'kIOMasterPortDefault' was deprecated in macOS 12.0: renamed to 'kIOMainPortDefault'
        lightSensorIOPort = IONotificationPortCreate(kIOMasterPortDefault)
                                                     ^
../video/out/mac/common.swift:313:54: note: use 'kIOMainPortDefault' instead
        lightSensorIOPort = IONotificationPortCreate(kIOMasterPortDefault)
                                                     ^~~~~~~~~~~~~~~~~~~~
                                                     kIOMainPortDefault
../video/out/mac/title_bar.swift:39:29: warning: 'light' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
            if material == .light || material == .dark {
                            ^
../video/out/mac/title_bar.swift:39:51: warning: 'dark' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
            if material == .light || material == .dark {
                                                  ^
../video/out/mac/title_bar.swift:42:36: warning: 'mediumLight' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
                      material == .mediumLight || material == .ultraDark
                                   ^
../video/out/mac/title_bar.swift:42:64: warning: 'ultraDark' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
                      material == .mediumLight || material == .ultraDark
                                                               ^
../video/out/mac/title_bar.swift:219:41: warning: 'dark' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
        case "14", "dark":      return .dark
                                        ^
../video/out/mac/title_bar.swift:220:41: warning: 'light' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
        case "15", "light":     return .light
                                        ^
../video/out/mac/title_bar.swift:230:49: warning: 'mediumLight' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
            case "16", "mediumLight":   return .mediumLight
                                                ^
../video/out/mac/title_bar.swift:231:49: warning: 'ultraDark' was deprecated in macOS 10.14: Use a semantic material instead.  To force the appearance of a view hierarchy, set the `appearance` property to an appropriate NSAppearance value.
            case "17", "ultraDark":     return .ultraDark
                                                ^
../video/out/mac/view.swift:35:9: warning: 'wantsBestResolutionOpenGLSurface' was deprecated in macOS 10.14: Use NSOpenGLView instead.
        wantsBestResolutionOpenGLSurface = true
        ^
../video/out/mac/gl_layer.swift:70:16: warning: 'CAOpenGLLayer' was deprecated in macOS 10.14: OpenGL is deprecated
class GLLayer: CAOpenGLLayer {
               ^
../video/out/mac/gl_layer.swift:117:9: warning: 'CGLSetParameter' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
        CGLSetParameter(cglContext, kCGLCPSwapInterval, &i)
        ^
../video/out/mac/gl_layer.swift:178:9: warning: 'glGetIntegerv' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
        glGetIntegerv(GLenum(GL_VIEWPORT), &dims)
        ^
../video/out/mac/gl_layer.swift:190:13: warning: 'NSDisableScreenUpdates()' was deprecated in macOS 10.11: As of 10.11 it is not generally necessary to take explicit action to achieve visual atomicity. +[NSAnimationContext runAnimationGroup:] and other similar methods can be used when a stronger than normal need for visual atomicity is required. The NSAnimationContext methods do not suffer from the same performance problems as NSDisableScreenUpdates.
            NSDisableScreenUpdates()
            ^
../video/out/mac/gl_layer.swift:197:13: warning: 'NSEnableScreenUpdates()' was deprecated in macOS 10.11: As of 10.11 it is not generally necessary to take explicit action to achieve visual atomicity. +[NSAnimationContext runAnimationGroup:] and other similar methods can be used when a stronger than normal need for visual atomicity is required. The NSAnimationContext methods do not suffer from the same performance problems as NSEnableScreenUpdates.
            NSEnableScreenUpdates()
            ^
../video/out/mac/gl_layer.swift:283:23: warning: 'CGLChoosePixelFormat' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
                err = CGLChoosePixelFormat(format, &pix, &npix)
                      ^
../video/out/mac/gl_layer.swift:299:36: warning: 'CGLErrorString' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
        let errS = String(cString: CGLErrorString(err))
                                   ^
../video/out/mac/gl_layer.swift:312:21: warning: 'CGLCreateContext' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
        let error = CGLCreateContext(pixelFormat, nil, &context)
                    ^
../video/out/mac/gl_layer.swift:315:40: warning: 'CGLErrorString' was deprecated in macOS 10.14: OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
            let errS = String(cString: CGLErrorString(error))
                                       ^
[203/236] Compiling Objective-C object libmpv.2.dylib.p/osdep_macosx_events.m.o
In file included from ../osdep/macosx_events.m:43:
./osdep/macOS_swift.h:328:22: warning: 'CAOpenGLLayer' is deprecated: first deprecated in macOS 10.14 - OpenGL is deprecated [-Wdeprecated-declarations]
@interface GLLayer : CAOpenGLLayer
                     ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h:19:12: note: 'CAOpenGLLayer' has been explicitly marked deprecated here
@interface CAOpenGLLayer : CALayer
           ^
../osdep/macosx_events.m:284:13: warning: 18 enumeration values not handled in switch: 'MPV_EVENT_NONE', 'MPV_EVENT_LOG_MESSAGE', 'MPV_EVENT_GET_PROPERTY_REPLY'... [-Wswitch]
    switch (event->event_id) {
            ^~~~~~~~~~~~~~~
../osdep/macosx_events.m:284:13: note: add missing switch cases
    switch (event->event_id) {
            ^
2 warnings generated.
[207/236] Compiling Objective-C object libmpv.2.dylib.p/osdep_macosx_application.m.o
In file included from ../osdep/macosx_application.m:39:
./osdep/macOS_swift.h:328:22: warning: 'CAOpenGLLayer' is deprecated: first deprecated in macOS 10.14 - OpenGL is deprecated [-Wdeprecated-declarations]
@interface GLLayer : CAOpenGLLayer
                     ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAOpenGLLayer.h:19:12: note: 'CAOpenGLLayer' has been explicitly marked deprecated here
@interface CAOpenGLLayer : CALayer
           ^
1 warning generated.
[210/236] Compiling Objective-C object libmpv.2.dylib.p/video_out_cocoa_events_view.m.o
../video/out/cocoa/events_view.m:42:41: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
        [self registerForDraggedTypes:@[NSFilenamesPboardType,
                                        ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
                               ^
../video/out/cocoa/events_view.m:43:41: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
                                        NSURLPboardType]];
                                        ^~~~~~~~~~~~~~~
                                        NSPasteboardTypeURL
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14));
                               ^
../video/out/cocoa/events_view.m:308:31: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
    if ([types containsObject:NSFilenamesPboardType] ||
                              ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
                               ^
../video/out/cocoa/events_view.m:309:31: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
        [types containsObject:NSURLPboardType]) {
                              ^~~~~~~~~~~~~~~
                              NSPasteboardTypeURL
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14));
                               ^
../video/out/cocoa/events_view.m:319:40: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
    if ([[pboard types] containsObject:NSFilenamesPboardType]) {
                                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
                               ^
../video/out/cocoa/events_view.m:320:56: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
        NSArray *pbitems = [pboard propertyListForType:NSFilenamesPboardType];
                                                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
                               ^
../video/out/cocoa/events_view.m:323:47: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
    } else if ([[pboard types] containsObject:NSURLPboardType]) {
                                              ^~~~~~~~~~~~~~~
                                              NSPasteboardTypeURL
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14));
                               ^
7 warnings generated.
[215/236] Compiling Objective-C object libmpv.2.dylib.p/osdep_macosx_menubar.m.o
../osdep/macosx_menubar.m:699:28: warning: 'openFile:' is deprecated: first deprecated in macOS 11.0 - Use -[NSWorkspace openURL:] instead. [-Wdeprecated-declarations]
            if ([workspace openFile:fileP])
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWorkspace.h:374:1: note: 'openFile:' has been explicitly marked deprecated here
- (BOOL)openFile:(NSString *)fullPath API_DEPRECATED("Use -[NSWorkspace openURL:] instead.", macos(10.0, 11.0));
^
../osdep/macosx_menubar.m:701:24: warning: 'openFile:' is deprecated: first deprecated in macOS 11.0 - Use -[NSWorkspace openURL:] instead. [-Wdeprecated-declarations]
            [workspace openFile:path];
                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWorkspace.h:374:1: note: 'openFile:' has been explicitly marked deprecated here
- (BOOL)openFile:(NSString *)fullPath API_DEPRECATED("Use -[NSWorkspace openURL:] instead.", macos(10.0, 11.0));
^
../osdep/macosx_menubar.m:706:24: warning: 'openFile:' is deprecated: first deprecated in macOS 11.0 - Use -[NSWorkspace openURL:] instead. [-Wdeprecated-declarations]
        if ([workspace openFile:path]) {
                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWorkspace.h:374:1: note: 'openFile:' has been explicitly marked deprecated here
- (BOOL)openFile:(NSString *)fullPath API_DEPRECATED("Use -[NSWorkspace openURL:] instead.", macos(10.0, 11.0));
^
3 warnings generated.
[219/236] Compiling C object libmpv.2.dylib.p/audio_out_ao_coreaudio.c.o
../audio/out/ao_coreaudio.c:372:13: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
            kAudioObjectPropertyElementMaster
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
../audio/out/ao_coreaudio.c:397:13: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
            kAudioObjectPropertyElementMaster
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
2 warnings generated.
[220/236] Compiling C object libmpv.2.dylib.p/audio_out_ao_coreaudio_exclusive.c.o
../audio/out/ao_coreaudio_exclusive.c:122:26: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
            .mElement  = kAudioObjectPropertyElementMaster,
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                         kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
1 warning generated.
[222/236] Compiling C object libmpv.2.dylib.p/audio_out_ao_coreaudio_properties.c.o
../audio/out/ao_coreaudio_properties.c:32:22: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        .mElement  = kAudioObjectPropertyElementMaster,
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
../audio/out/ao_coreaudio_properties.c:44:22: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        .mElement  = kAudioObjectPropertyElementMaster,
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
../audio/out/ao_coreaudio_properties.c:59:22: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        .mElement  = kAudioObjectPropertyElementMaster,
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
../audio/out/ao_coreaudio_properties.c:98:22: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        .mElement  = kAudioObjectPropertyElementMaster,
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
4 warnings generated.
[224/236] Compiling C object libmpv.2.dylib.p/video_out_opengl_context_cocoa.c.o
../video/out/opengl/context_cocoa.c:37:20: warning: 'CGLSetParameter' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
    CGLError err = CGLSetParameter(ctx, kCGLCPSwapInterval, &enabled);
                   ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:87:17: note: 'CGLSetParameter' has been explicitly marked deprecated here
extern CGLError CGLSetParameter(CGLContextObj ctx, CGLContextParameter pname, const GLint *params) OPENGL_DEPRECATED(10.0, 10.14);
                ^
../video/out/opengl/context_cocoa.c:79:11: warning: 'CGLChoosePixelFormat' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
    err = CGLChoosePixelFormat(attrs, &p->pix, &npix);
          ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:31:17: note: 'CGLChoosePixelFormat' has been explicitly marked deprecated here
extern CGLError CGLChoosePixelFormat(const CGLPixelFormatAttribute *attribs, CGLPixelFormatObj OPENGL_NULLABLE * OPENGL_NONNULL pix, GLint *npix) OPENGL_DEPRECATED(10.0, 10.14);
                ^
../video/out/opengl/context_cocoa.c:86:15: warning: 'CGLChoosePixelFormat' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
        err = CGLChoosePixelFormat(attrs, &p->pix, &npix);
              ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:31:17: note: 'CGLChoosePixelFormat' has been explicitly marked deprecated here
extern CGLError CGLChoosePixelFormat(const CGLPixelFormatAttribute *attribs, CGLPixelFormatObj OPENGL_NULLABLE * OPENGL_NONNULL pix, GLint *npix) OPENGL_DEPRECATED(10.0, 10.14);
                ^
../video/out/opengl/context_cocoa.c:91:16: warning: 'CGLErrorString' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
               CGLErrorString(err), err);
               ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:122:13: note: 'CGLErrorString' has been explicitly marked deprecated here
const char *CGLErrorString(CGLError error) OPENGL_DEPRECATED(10.0, 10.14);
            ^
../video/out/opengl/context_cocoa.c:95:11: warning: 'CGLCreateContext' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
    err = CGLCreateContext(p->pix, 0, &p->ctx);
          ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:48:17: note: 'CGLCreateContext' has been explicitly marked deprecated here
extern CGLError CGLCreateContext(CGLPixelFormatObj pix, CGLContextObj OPENGL_NULLABLE share, CGLContextObj OPENGL_NULLABLE * OPENGL_NONNULL ctx) OPENGL_DEPRECATED(10.0, 10.14);
                ^
../video/out/opengl/context_cocoa.c:120:18: warning: 'CGLErrorString' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
                 CGLErrorString(err), err);
                 ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:122:13: note: 'CGLErrorString' has been explicitly marked deprecated here
const char *CGLErrorString(CGLError error) OPENGL_DEPRECATED(10.0, 10.14);
            ^
../video/out/opengl/context_cocoa.c:128:9: warning: 'CGLSetParameter' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
        CGLSetParameter(p->ctx, kCGLCPSurfaceOpacity, &(GLint){0});
        ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:87:17: note: 'CGLSetParameter' has been explicitly marked deprecated here
extern CGLError CGLSetParameter(CGLContextObj ctx, CGLContextParameter pname, const GLint *params) OPENGL_DEPRECATED(10.0, 10.14);
                ^
7 warnings generated.
[228/236] Compiling Objective-C object libmpv.2.dylib.p/video_out_cocoa_common.m.o
../video/out/cocoa_common.m:67:5: warning: 'NSOpenGLContext' is deprecated: first deprecated in macOS 10.14 - Please use Metal or MetalKit. [-Wdeprecated-declarations]
    NSOpenGLContext *nsgl_ctx;
    ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h:184:12: note: 'NSOpenGLContext' has been explicitly marked deprecated here
@interface NSOpenGLContext : NSObject <NSLocking>
           ^
../video/out/cocoa_common.m:228:17: warning: 'kIOMasterPortDefault' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
                kIOMasterPortDefault, IOServiceMatching("AppleLMUController"));
                ^~~~~~~~~~~~~~~~~~~~
                kIOMainPortDefault
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h:133:19: note: 'kIOMasterPortDefault' has been explicitly marked deprecated here
const mach_port_t kIOMasterPortDefault
                  ^
../video/out/cocoa_common.m:235:60: warning: 'kIOMasterPortDefault' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        s->light_sensor_io_port = IONotificationPortCreate(kIOMasterPortDefault);
                                                           ^~~~~~~~~~~~~~~~~~~~
                                                           kIOMainPortDefault
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h:133:19: note: 'kIOMasterPortDefault' has been explicitly marked deprecated here
const mach_port_t kIOMasterPortDefault
                  ^
../video/out/cocoa_common.m:612:15: warning: 'setWantsBestResolutionOpenGLSurface:' is deprecated: first deprecated in macOS 10.14 - Use NSOpenGLView instead. [-Wdeprecated-declarations]
    [s->video setWantsBestResolutionOpenGLSurface:YES];
              ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLView.h:47:16: note: property 'wantsBestResolutionOpenGLSurface' is declared deprecated here
@property BOOL wantsBestResolutionOpenGLSurface API_DEPRECATED("Use NSOpenGLView instead.", macos(10.7,10.14));
               ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGLView.h:47:16: note: 'setWantsBestResolutionOpenGLSurface:' has been explicitly marked deprecated here
../video/out/cocoa_common.m:615:18: warning: 'setView:' is deprecated: first deprecated in macOS 10.14 - Use NSOpenGLView to provide OpenGL content in a Cocoa app. [-Wdeprecated-declarations]
    [s->nsgl_ctx setView:s->video];
                 ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h:193:36: note: property 'view' is declared deprecated here
@property (nullable, weak) NSView *view NS_SWIFT_UI_ACTOR API_DEPRECATED("", macos(10.0,10.14));
                                   ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h:194:1: note: 'setView:' has been explicitly marked deprecated here
- (void)setView:(nullable NSView *)view NS_SWIFT_UI_ACTOR API_DEPRECATED("Use NSOpenGLView to provide OpenGL content in a Cocoa app.", macos(10.0,10.14));
^
../video/out/cocoa_common.m:641:61: warning: sending 'unsigned char *' to parameter of type 'const char * _Nonnull' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        NSString *nstitle  = [NSString stringWithUTF8String:btitle.start];
                                                            ^~~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:396:61: note: passing argument to parameter 'nullTerminatedCString' here
+ (nullable instancetype)stringWithUTF8String:(const char *)nullTerminatedCString NS_FORMAT_ARGUMENT(1);
                                                            ^
../video/out/cocoa_common.m:697:41: warning: 'NSOpenGLContext' is deprecated: first deprecated in macOS 10.14 - Please use Metal or MetalKit. [-Wdeprecated-declarations]
        s->nsgl_ctx = [[NSOpenGLContext alloc] initWithCGLContextObj:s->cgl_ctx];
                                        ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSOpenGL.h:184:12: note: 'NSOpenGLContext' has been explicitly marked deprecated here
@interface NSOpenGLContext : NSObject <NSLocking>
           ^
../video/out/cocoa_common.m:740:18: warning: 'CGLGetParameter' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
            if (!CGLGetParameter(s->cgl_ctx, kCGLCPSurfaceOpacity, &o) && !o) {
                 ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:88:17: note: 'CGLGetParameter' has been explicitly marked deprecated here
extern CGLError CGLGetParameter(CGLContextObj ctx, CGLContextParameter pname, GLint *params) OPENGL_DEPRECATED(10.0, 10.14);
                ^
../video/out/cocoa_common.m:547:12: warning: unused function 'vo_cocoa_ontop' [-Wunused-function]
static int vo_cocoa_ontop(struct vo *vo)
           ^
../video/out/cocoa_common.m:651:12: warning: unused function 'vo_cocoa_window_border' [-Wunused-function]
static int vo_cocoa_window_border(struct vo *vo)
           ^
10 warnings generated.
[230/236] Compiling C object libmpv.2.dylib.p/audio_out_ao_coreaudio_chmap.c.o
../audio/out/ao_coreaudio_chmap.c:245:23: warning: variable length array used [-Wvla]
    uint32_t channels[nch];
                      ^~~
1 warning generated.
[231/236] Compiling C object libmpv.2.dylib.p/audio_out_ao_coreaudio_utils.c.o
../audio/out/ao_coreaudio_utils.c:101:26: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
            .mElement  = kAudioObjectPropertyElementMaster,
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                         kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
../audio/out/ao_coreaudio_utils.c:380:22: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        .mElement  = kAudioObjectPropertyElementMaster,
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
../audio/out/ao_coreaudio_utils.c:489:22: warning: 'kAudioObjectPropertyElementMaster' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
        .mElement  = kAudioObjectPropertyElementMaster,
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     kAudioObjectPropertyElementMain
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/AudioHardwareBase.h:208:5: note: 'kAudioObjectPropertyElementMaster' has been explicitly marked deprecated here
    kAudioObjectPropertyElementMaster API_DEPRECATED_WITH_REPLACEMENT("kAudioObjectPropertyElementMain", macos(10.0, 12.0), ios(2.0, 15.0), watchos(1.0, 8.0), tvos(9.0, 15.0)) = kAudioObjectPropertyElementMain
    ^
3 warnings generated.
[234/236] Compiling C object libmpv.2.dylib.p/video_out_opengl_hwdec_osx.c.o
../video/out/opengl/hwdec_osx.c:179:23: warning: 'CGLErrorString' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
                   i, CGLErrorString(err), gl->GetError());
                      ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/OpenGL.h:122:13: note: 'CGLErrorString' has been explicitly marked deprecated here
const char *CGLErrorString(CGLError error) OPENGL_DEPRECATED(10.0, 10.14);
            ^
1 warning generated.
[235/236] Compiling Objective-C object libmpv.2.dylib.p/osdep_macosx_touchbar.m.o
../osdep/macosx_touchbar.m:300:13: warning: 17 enumeration values not handled in switch: 'MPV_EVENT_NONE', 'MPV_EVENT_SHUTDOWN', 'MPV_EVENT_LOG_MESSAGE'... [-Wswitch]
    switch (event->event_id) {
            ^~~~~~~~~~~~~~~
../osdep/macosx_touchbar.m:300:13: note: add missing switch cases
    switch (event->event_id) {
            ^
1 warning generated.
[236/236] Linking target mpv
ld: warning: ignoring file '/usr/local/Cellar/lua@5.1/5.1.5_8/lib/liblua.5.1.5.dylib': found architecture 'x86_64', required architecture 'arm64'
+ ./build/mpv --version
mpv v0.36.0-530-g273906490d Copyright © 2000-2023 mpv/MPlayer/mplayer2 projects
 built on Oct 13 2023 15:43:02
FFmpeg version: 6.0
FFmpeg library versions:
   libavutil       58.2.100
   libavcodec      60.3.100
   libavformat     60.3.100
   libswscale      7.1.100
   libavfilter     9.3.100
   libswresample   4.10.100

+ ./TOOLS/osxbundle.py --skip-deps build/mpv
Creating Mac OS X application bundle (version: 0.36.0-UNKNOWN)...
> copying bundle skeleton
> copying binary
> create bundle symlink
> generating Info.plist
done.
+ [[ '' == \-\-\s\t\a\t\i\c ]]

But if open the mpv.app, it does nothing. Nothing appears to happen at all.
If I first sign it with the workaround mentioned by @davnozdu then I get an error when I try to launch it:

Error Log
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               mpv-bundle [40429]
Path:                  /Users/USER/*/mpv.app/Contents/MacOS/mpv-bundle
Identifier:            io.mpv
Version:               0.36.0-UNKNOWN (???)
Code Type:             ARM-64 (Native)
Parent Process:        launchd [1]
User ID:               501

Date/Time:             2023-10-13 15:46:19.9042 -0700
OS Version:            macOS 14.0 (23A344)
Report Version:        12
Anonymous UUID:        8138033C-B3C3-3D27-F9D9-E4FE4195BE7C

Sleep/Wake UUID:       CA0E5047-2D57-48B0-B698-99F2C7BEC727

Time Awake Since Boot: 25000 seconds
Time Since Wake:       3988 seconds

System Integrity Protection: enabled

Crashed Thread:        7  */lua script (osc)

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000

Termination Reason:    Namespace DYLD, Code 9 
missing symbol called

Thread 0::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	       0x18a4768b4 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x18a488d30 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x18a47f4f0 mach_msg_overwrite + 476
3   libsystem_kernel.dylib        	       0x18a476c38 mach_msg + 24
4   SkyLight                      	       0x18fe6fd64 __CGSWindowConstructWithRegionImpl_block_invoke + 252
5   SkyLight                      	       0x18fce4f2c SLSRegionPerformWithSerializedBytes + 92
6   SkyLight                      	       0x18fc632d0 SLSNewWindowWithOpaqueShapeAndContext + 880
7   SkyLight                      	       0x18fc637ac SLSNewWindowWithOpaqueShape + 24
8   AppKit                        	       0x18ea2ea78 -[NSCGSWindow initWithConnectionID:flags:] + 192
9   AppKit                        	       0x18ea2e608 +[NSCGSWindow(NSCGSWindowCreation) windowWithConnectionID:flags:] + 52
10  AppKit                        	       0x18e86019c _NXCreateWindow + 156
11  AppKit                        	       0x18de5fff0 -[NSWindow _commonAwake] + 672
12  AppKit                        	       0x18dd7e23c -[NSWindow _commonInitFrame:styleMask:backing:defer:] + 972
13  AppKit                        	       0x18dd7dad4 -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 796
14  AppKit                        	       0x18eb31ca4 -[NSMenuBarReplicantWindow initWithView:] + 92
15  AppKit                        	       0x18eb324a0 -[NSMenuBarDisplayWindow _replicantWindowWithView:] + 132
16  AppKit                        	       0x18eb321e0 __49-[NSMenuBarDisplayWindow _ensureReplicantWindows]_block_invoke + 156
17  AppKit                        	       0x18ea5615c -[NSMenuBarImpl backingViewsForDisplayID:completionHandler:] + 636
18  AppKit                        	       0x18eb32118 -[NSMenuBarDisplayWindow _ensureReplicantWindows] + 212
19  AppKit                        	       0x18ea44578 __62-[NSMenuBarPresentationInstance _setBoundsAndUpdateResolution]_block_invoke + 736
20  AppKit                        	       0x18ea479a0 -[NSMenuBarPresentationInstance _forEachWindowDo:withBlock:] + 476
21  AppKit                        	       0x18ea4426c -[NSMenuBarPresentationInstance _setBoundsAndUpdateResolution] + 124
22  AppKit                        	       0x18ea46908 -[NSMenuBarPresentationInstance _show:shouldNotify:inOrder:forAutoShow:requestVisibility:] + 160
23  AppKit                        	       0x18ea4743c -[NSMenuBarPresentationInstance _updateAggregateUIMode:orderBar:baroloFSMToggle:activeInstance:] + 736
24  AppKit                        	       0x18ea43d04 +[NSMenuBarPresentationInstance forEachMenuBarDo:] + 116
25  AppKit                        	       0x18ea47110 +[NSMenuBarPresentationInstance _updateAllAggregateUIModes:orderBar:] + 144
26  AppKit                        	       0x18ea491fc +[NSMenuBarPresentationInstance _setSystemUIMode:withOptions:] + 148
27  AppKit                        	       0x18dd60820 -[NSApplication finishLaunching] + 668
28  AppKit                        	       0x18dd6035c -[NSApplication run] + 252
29  mpv-bundle                    	       0x1029e0384 cocoa_run_runloop + 24 (macosx_application.m:269) [inlined]
30  mpv-bundle                    	       0x1029e0384 cocoa_main + 588 (macosx_application.m:366)
31  dyld                          	       0x18a13d058 start + 2224

Thread 1::  Dispatch queue: */accessQueue
0   CoreFoundation                	       0x18a531974 __CFBasicHashDrain + 448
1   CoreFoundation                	       0x18a665e48 _CFRelease + 292
2   CoreFoundation                	       0x18a56634c __CFBinaryPlistWriteOrPresize + 644
3   CoreFoundation                	       0x18a565e30 CFPropertyListWrite + 204
4   CoreFoundation                	       0x18a5889d8 CFPropertyListCreateData + 144
5   ColorSync                     	       0x190732f64 AppleCMMCreateTransformProperty + 700
6   ColorSync                     	       0x190732c4c ColorSyncTransformInternalCopyProperty + 176
7   ColorSync                     	       0x1907350a4 ColorSyncTransformIteratorCreate + 312
8   ColorSync                     	       0x190734f24 ColorSyncTransformGetIterator + 148
9   ColorSync                     	       0x190734d48 ColorSyncTransformIterate + 96
10  CoreGraphics                  	       0x19005f78c CGColorConversionInfoIterateFunctionsWithCallbacks + 596
11  libCGInterfaces.dylib         	       0x1b3ef0170 GetColorspaceTransformsWithTransformWithCGColorConversionInfo + 348
12  vImage                        	       0x19244f66c vImageConverter_CreateCGPassListWithCGColorConversionInfo + 2104
13  vImage                        	       0x192443b10 vImageConverter_CreateWithCGColorConversionInfo + 152
14  CoreGraphics                  	       0x19005ac18 CGvImageConverterInitializeShared + 620
15  CoreGraphics                  	       0x19005a3f8 CGvImageConverterCacheGetRetained + 744
16  CoreGraphics                  	       0x19005a0c4 CGCMSConverterCreateCachedCGvImageConverter + 80
17  CoreGraphics                  	       0x190059fe0 convert_using_vImageConverter + 260
18  CoreGraphics                  	       0x1900598d0 convert_icc + 204
19  CoreGraphics                  	       0x1900597e4 CGCMSConverterConvert + 140
20  CoreGraphics                  	       0x19040a724 CGColorTransformConvert + 120
21  CoreGraphics                  	       0x19005dab0 CGColorTransformConvertComponentData + 572
22  AppKit                        	       0x18de62630 +[_NSAxisAlignedVolumeColorGamut gamutWithCGColorSpace:] + 448
23  AppKit                        	       0x18e915ee4 __RepSelectionCandidateColorSpaceScore_block_invoke + 148
24  AppKit                        	       0x18e915e3c RepSelectionCandidateColorSpaceScore + 112
25  AppKit                        	       0x18e915d10 RepSelectionCompareColorSpace + 36
26  AppKit                        	       0x18e915244 -[NSImage(RepSelection) bestRepresentationAmongRepresentations:forHints:] + 1984
27  AppKit                        	       0x18df71630 -[NSImage _usingBestRepresentationAmongRepresentations:forRect:context:hints:body:] + 220
28  AppKit                        	       0x18df71520 __53-[NSImage TIFFRepresentationUsingCompression:factor:]_block_invoke + 236
29  AppKit                        	       0x18dd48b44 -[NSImage _usingRepresentationsPerformBlock:] + 96
30  AppKit                        	       0x18df71398 -[NSImage TIFFRepresentationUsingCompression:factor:] + 184
31  MediaPlayer                   	       0x1b036f020 MPArtworkImageJPEGRepresentation + 60
32  MediaPlayer                   	       0x1b0296930 -[MPMediaItemArtwork jpegDataWithSize:] + 48
33  MediaPlayer                   	       0x1b031ddcc ___MPToMRNowPlayingInfoDictionary_block_invoke + 288
34  libswiftCore.dylib            	       0x19a0129d4 specialized _SwiftDeferredNSDictionary.enumerateKeysAndObjects(options:using:) + 580
35  libswiftCore.dylib            	       0x199da0db0 @objc _SwiftDeferredNSDictionary.enumerateKeysAndObjects(options:using:) + 48
36  MediaPlayer                   	       0x1b031db38 _MPToMRNowPlayingInfoDictionary + 200
37  MediaPlayer                   	       0x1b031d894 -[MPNowPlayingInfoCenter(NowPlayingInfo) _onQueue_pushNowPlayingInfoAndRetry:] + 268
38  libdispatch.dylib             	       0x18a307cb8 _dispatch_call_block_and_release + 32
39  libdispatch.dylib             	       0x18a309910 _dispatch_client_callout + 20
40  libdispatch.dylib             	       0x18a310ea4 _dispatch_lane_serial_drain + 748
41  libdispatch.dylib             	       0x18a3119d4 _dispatch_lane_invoke + 380
42  libdispatch.dylib             	       0x18a31c61c _dispatch_root_queue_drain_deferred_wlh + 288
43  libdispatch.dylib             	       0x18a31be90 _dispatch_workloop_worker_thread + 404
44  libsystem_pthread.dylib       	       0x18a4b3114 _pthread_wqthread + 288
45  libsystem_pthread.dylib       	       0x18a4b1e30 start_wqthread + 8

Thread 2:
0   libsystem_pthread.dylib       	       0x18a4b1e28 start_wqthread + 0

Thread 3:
0   libsystem_pthread.dylib       	       0x18a4b1e28 start_wqthread + 0

Thread 4:
0   libsystem_pthread.dylib       	       0x18a4b1e28 start_wqthread + 0

Thread 5:: */playback core (OSX)
0   libsystem_kernel.dylib        	       0x18a47866c __ulock_wait + 8
1   libdispatch.dylib             	       0x18a30a300 _dlock_wait + 56
2   libdispatch.dylib             	       0x18a30a0b4 _dispatch_thread_event_wait_slow + 56
3   libdispatch.dylib             	       0x18a318fb0 __DISPATCH_WAIT_FOR_QUEUE__ + 368
4   libdispatch.dylib             	       0x18a318b5c _dispatch_sync_f_slow + 148
5   mpv-bundle                    	       0x1029e08d8 -[EventsResponder setMpvHandle:] + 88 (macosx_events.m:251)
6   mpv-bundle                    	       0x1029e0578 cocoa_set_mpv_handle + 36 (macosx_events.m:157)
7   mpv-bundle                    	       0x102993350 mp_initialize + 556 (main.c:401)
8   mpv-bundle                    	       0x102993530 mpv_main + 76 (main.c:437)
9   mpv-bundle                    	       0x1029e040c playback_thread + 48 (macosx_application.m:278)
10  libsystem_pthread.dylib       	       0x18a4b7034 _pthread_start + 136
11  libsystem_pthread.dylib       	       0x18a4b1e3c thread_start + 8

Thread 6:: */log-file
0   libsystem_kernel.dylib        	       0x18a47a784 __write_nocancel + 8
1   libsystem_c.dylib             	       0x18a37f82c __swrite + 24
2   libsystem_c.dylib             	       0x18a361918 _swrite + 108
3   libsystem_c.dylib             	       0x18a35fa88 __sflush + 232
4   libsystem_c.dylib             	       0x18a35f928 fflush + 36
5   mpv-bundle                    	       0x10292b768 log_file_thread + 232 (msg.c:556)
6   libsystem_pthread.dylib       	       0x18a4b7034 _pthread_start + 136
7   libsystem_pthread.dylib       	       0x18a4b1e3c thread_start + 8

Thread 7 Crashed:: */lua script (osc)
0   dyld                          	       0x18a1adb48 __abort_with_payload + 8
1   dyld                          	       0x18a1ba108 abort_with_payload_wrapper_internal + 104
2   dyld                          	       0x18a1ba13c abort_with_payload + 16
3   dyld                          	       0x18a141518 dyld4::halt(char const*, dyld4::StructuredError const*) + 304
4   dyld                          	       0x18a179198 dyld4::APIs::_dyld_missing_symbol_abort() + 28
5   mpv-bundle                    	       0x1029ef51c load_lua + 212 (lua.c:460)
6   mpv-bundle                    	       0x10299b2d0 run_script + 100 (scripting.c:93)
7   mpv-bundle                    	       0x10299b354 script_thread + 32 (scripting.c:105)
8   libsystem_pthread.dylib       	       0x18a4b7034 _pthread_start + 136
9   libsystem_pthread.dylib       	       0x18a4b1e3c thread_start + 8

Thread 8:
0   libsystem_pthread.dylib       	       0x18a4b1e34 thread_start + 0

Thread 9:
0   libsystem_pthread.dylib       	       0x18a4b1e34 thread_start + 0

Thread 10:
0   libsystem_pthread.dylib       	       0x18a4b1e34 thread_start + 0

Thread 11:
0   libsystem_pthread.dylib       	       0x18a4b1e34 thread_start + 0


Thread 7 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000006   x1: 0x0000000000000009   x2: 0x000000016d8ea600   x3: 0x0000000000000014
    x4: 0x000000016d8ea200   x5: 0x0000000000000000   x6: 0x0000000000000000   x7: 0x00000000000008f0
    x8: 0x0000000000000020   x9: 0x000000016d8ea17e  x10: 0x000000000000000a  x11: 0x0000000000000000
   x12: 0x0000000000000034  x13: 0x0000000000000000  x14: 0x00000000ffffffff  x15: 0x0000000000000000
   x16: 0x0000000000000209  x17: 0x000000018a13a37c  x18: 0x0000000000000000  x19: 0x0000000000000000
   x20: 0x000000016d8ea200  x21: 0x0000000000000014  x22: 0x000000016d8ea600  x23: 0x0000000000000009
   x24: 0x0000000000000006  x25: 0x0000000142822c50  x26: 0x0000000141046e50  x27: 0x0000000000000000
   x28: 0x0000000000000000   fp: 0x000000016d8ea1d0   lr: 0x000000018a1ba108
    sp: 0x000000016d8ea190   pc: 0x000000018a1adb48 cpsr: 0x40001000
   far: 0x00000001030ac000  esr: 0x56000080  Address size fault

Binary Images:
       0x102fa0000 -        0x102fabfff libobjc-trampolines.dylib (*) <562f95b3-8118-3d61-a13f-34e819dd863d> /usr/lib/libobjc-trampolines.dylib
       0x1031ac000 -        0x1031cffff libass.9.dylib (*) <6ef87aad-bac6-3dfd-909b-eec70da343de> /opt/homebrew/*/libass.9.dylib
       0x103b30000 -        0x1043dbfff libavcodec.60.3.100.dylib (*) <7970833c-6c9b-301c-9c06-8c54ede0ea44> /opt/homebrew/*/libavcodec.60.3.100.dylib
       0x1034d8000 -        0x10372bfff libavfilter.9.3.100.dylib (*) <640f5293-baf1-3120-8a3c-7d22f47a1007> /opt/homebrew/*/libavfilter.9.3.100.dylib
       0x1037d0000 -        0x10399ffff libavformat.60.3.100.dylib (*) <17a8cab3-2e67-386e-a5ed-55db8fb15111> /opt/homebrew/*/libavformat.60.3.100.dylib
       0x103278000 -        0x1032e3fff libavutil.58.2.100.dylib (*) <d95275ff-548a-3d94-aae4-1890eedc49cb> /opt/homebrew/*/libavutil.58.2.100.dylib
       0x1031e4000 -        0x1031f7fff libswresample.4.10.100.dylib (*) <632efdcb-7357-3276-8c70-09dc1d512038> /opt/homebrew/*/libswresample.4.10.100.dylib
       0x103418000 -        0x10346bfff libswscale.7.1.100.dylib (*) <9e295cd1-bd32-3427-a744-b0c8e81579d0> /opt/homebrew/*/libswscale.7.1.100.dylib
       0x103484000 -        0x1034b7fff libmujs.dylib (*) <d72fc4d3-1e42-3da8-bdd9-227a17032176> /opt/homebrew/*/libmujs.dylib
       0x1039f4000 -        0x103a2ffff liblcms2.2.dylib (*) <603406d0-1ef9-3185-b999-767d5657619a> /opt/homebrew/*/liblcms2.2.dylib
       0x103204000 -        0x103223fff libavdevice.60.1.100.dylib (*) <5d61e52c-301d-36b3-88a3-23aeaaa1654c> /opt/homebrew/*/libavdevice.60.1.100.dylib
       0x103aa8000 -        0x103ae7fff libbluray.2.dylib (*) <92284a2b-bde9-3c1a-88c3-628390a8dc50> /opt/homebrew/*/libbluray.2.dylib
       0x104ac0000 -        0x104aebfff librubberband.2.dylib (*) <76d42c1d-b3bd-37d3-a523-c05e0663173e> /opt/homebrew/*/librubberband.2.dylib
       0x104c94000 -        0x104dfffff libsamplerate.0.2.2.dylib (*) <93371c36-d267-342d-91c2-028c70cb8ffd> /opt/homebrew/*/libsamplerate.0.2.2.dylib
       0x103238000 -        0x10325ffff libuchardet.0.0.8.dylib (*) <4cfc2cfa-3d9b-30d7-aca7-67ac382501a6> /opt/homebrew/*/libuchardet.0.0.8.dylib
       0x104bd4000 -        0x104c53fff libvapoursynth.dylib (*) <d14047f0-f023-3cc6-9046-4de3ed1d5c6b> /opt/homebrew/*/libvapoursynth.dylib
       0x103188000 -        0x10318bfff libvapoursynth-script.0.dylib (*) <991db6d3-d50d-336b-a967-ee7c1ac39a55> /opt/homebrew/*/libvapoursynth-script.0.dylib
       0x104e14000 -        0x104e4bfff libzimg.2.dylib (*) <b376dfc7-a9d4-3b51-b41a-8c45ed45fc49> /opt/homebrew/*/libzimg.2.dylib
       0x104e78000 -        0x104ed3fff libjpeg.8.3.2.dylib (*) <c37e7098-1b9a-3b38-bb38-53a423960a81> /opt/homebrew/*/libjpeg.8.3.2.dylib
       0x104eec000 -        0x104f67fff libfreetype.6.dylib (*) <166fea07-2eb1-3cc6-bd74-1f25515bc9e0> /opt/homebrew/*/libfreetype.6.dylib
       0x103a7c000 -        0x103a97fff libfribidi.0.dylib (*) <5257a32b-463b-38b0-a487-4b1b7f2e1f65> /opt/homebrew/*/libfribidi.0.dylib
       0x1050b4000 -        0x105173fff libharfbuzz.0.dylib (*) <3fc61e9d-f66e-34d6-9d4d-3a6cc8be30a0> /opt/homebrew/*/libharfbuzz.0.dylib
       0x103b00000 -        0x103b1ffff libunibreak.5.dylib (*) <aae854ec-0337-3365-945e-9e394132e5a7> /opt/homebrew/*/libunibreak.5.dylib
       0x104b48000 -        0x104b6bfff libpng16.16.dylib (*) <989cbc46-f69f-3b48-a141-b4d92160fbd8> /opt/homebrew/*/libpng16.16.dylib
       0x1051dc000 -        0x1052cbfff libglib-2.0.0.dylib (*) <69b76dd6-3e75-3468-aeb4-20bfd2f70990> /opt/homebrew/*/libglib-2.0.0.dylib
       0x104b14000 -        0x104b27fff libgraphite2.3.2.1.dylib (*) <1bbb20c8-b0d3-318a-a229-f81c8a8dd304> /opt/homebrew/*/libgraphite2.3.2.1.dylib
       0x104b7c000 -        0x104b93fff libintl.8.dylib (*) <8c70326b-fefe-3e4d-9064-22e730735c5f> /opt/homebrew/*/libintl.8.dylib
       0x105014000 -        0x105087fff libpcre2-8.0.dylib (*) <935230cb-cdd4-3fc6-b188-4865fdfea7b8> /opt/homebrew/*/libpcre2-8.0.dylib
       0x105484000 -        0x1055d3fff libvpx.8.dylib (*) <bb4c9fb4-ba14-309b-bab3-2a0b7a108a5c> /opt/homebrew/*/libvpx.8.dylib
       0x103a50000 -        0x103a57fff libwebpmux.3.0.13.dylib (*) <ea3ff34d-d209-3bb3-a816-a16352033f58> /opt/homebrew/*/libwebpmux.3.0.13.dylib
       0x104f8c000 -        0x104fabfff liblzma.5.dylib (*) <7c1e4570-c041-3609-be6b-5baca080a220> /opt/homebrew/*/liblzma.5.dylib
       0x104fbc000 -        0x104fcbfff libaribb24.0.dylib (*) <56102928-a424-3ce0-9056-b10c27fcc974> /opt/homebrew/*/libaribb24.0.dylib
       0x105608000 -        0x1056a3fff libdav1d.6.dylib (*) <a1f43b2c-b140-3002-adb5-e259d9c5d652> /opt/homebrew/*/libdav1d.6.dylib
       0x104fd8000 -        0x104fe7fff libopencore-amrwb.0.dylib (*) <8c89779f-c85e-3767-b3ef-2525c9188e01> /opt/homebrew/*/libopencore-amrwb.0.dylib
       0x103a64000 -        0x103a6bfff libsnappy.1.1.10.dylib (*) <cbe4a36a-6d1c-3956-a527-c8b8ac6266d6> /opt/homebrew/*/libsnappy.1.1.10.dylib
       0x105a70000 -        0x105d57fff libaom.3.7.0.dylib (*) <b5b88e5f-bcf7-36bc-8b8a-10f8724a9c2d> /opt/homebrew/*/libaom.3.7.0.dylib
       0x105710000 -        0x105737fff libvmaf.1.dylib (*) <7f6c7636-6232-359f-8730-04df1a01988b> /opt/homebrew/*/libvmaf.1.dylib
       0x105e1c000 -        0x105f4bfff libjxl.0.8.2.dylib (*) <3b43c729-1255-3570-b574-1c1b2b41906e> /opt/homebrew/*/libjxl.0.8.2.dylib
       0x10319c000 -        0x10319ffff libjxl_threads.0.8.2.dylib (*) <94d951ed-6858-3a41-b9d9-47228d965380> /opt/homebrew/*/libjxl_threads.0.8.2.dylib
       0x105350000 -        0x105383fff libmp3lame.0.dylib (*) <26bda67f-5769-3e4b-b276-0c0220b8904e> /opt/homebrew/*/libmp3lame.0.dylib
       0x105304000 -        0x105323fff libopencore-amrnb.0.dylib (*) <18506ae5-a51c-3a10-8456-d898f2e83709> /opt/homebrew/*/libopencore-amrnb.0.dylib
       0x10541c000 -        0x10545ffff libopenjp2.2.5.0.dylib (*) <4af54edf-0a9e-39bf-9d74-b1c154c693eb> /opt/homebrew/*/libopenjp2.2.5.0.dylib
       0x105800000 -        0x105843fff libopus.0.dylib (*) <bee394c1-7ed2-3725-aeeb-3bd524f58553> /opt/homebrew/*/libopus.0.dylib
       0x1062b8000 -        0x106487fff librav1e.0.6.6.dylib (*) <d847bf22-8fdf-3625-b94a-1da2eb96ff7d> /opt/homebrew/*/librav1e.0.6.6.dylib
       0x104ff4000 -        0x105007fff libspeex.1.dylib (*) <faee045a-71af-3c95-9f7a-ed2266cfe734> /opt/homebrew/*/libspeex.1.dylib
       0x1065c0000 -        0x1067c3fff libSvtAv1Enc.1.7.0.dylib (*) <2f9a5156-88e5-3060-be3b-abb38151f914> /opt/homebrew/*/libSvtAv1Enc.1.7.0.dylib
       0x1053c8000 -        0x1053ebfff libtheoraenc.1.dylib (*) <71488375-eed3-385b-90ea-05927ea1faaf> /opt/homebrew/*/libtheoraenc.1.dylib
       0x104bbc000 -        0x104bc7fff libtheoradec.1.dylib (*) <797529f1-c2ea-329a-9028-e744c5254b07> /opt/homebrew/*/libtheoradec.1.dylib
       0x104ba4000 -        0x104babfff libogg.0.dylib (*) <e9de71f2-7a0c-3397-b45e-bebe989a0aee> /opt/homebrew/*/libogg.0.dylib
       0x105884000 -        0x1058a7fff libvorbis.0.dylib (*) <3903cb17-a92a-3de0-8e0a-a11fe8fee925> /opt/homebrew/*/libvorbis.0.dylib
       0x105968000 -        0x1059dffff libvorbisenc.2.dylib (*) <abdef41d-3033-3ff6-be3c-71892cd00160> /opt/homebrew/*/libvorbisenc.2.dylib
       0x10590c000 -        0x10594bfff libwebp.7.1.8.dylib (*) <f9d4f5c0-9654-337f-9977-f11522c8440c> /opt/homebrew/*/libwebp.7.1.8.dylib
       0x106954000 -        0x106a77fff libx264.164.dylib (*) <cdbfaf38-a184-31fe-abd6-7ff7ddf2f0ef> /opt/homebrew/*/libx264.164.dylib
       0x106b8c000 -        0x106d9ffff libx265.199.dylib (*) <6301b745-c70c-3853-bfa6-1a0c1086a6de> /opt/homebrew/*/libx265.199.dylib
       0x105fb0000 -        0x105fcffff libsoxr.0.1.2.dylib (*) <beec6f1f-a1a0-3712-b890-8360232ae819> /opt/homebrew/*/libsoxr.0.1.2.dylib
       0x106110000 -        0x1061e3fff libX11.6.dylib (*) <e34d1012-2916-30a6-80cb-a797f99a8cb5> /opt/homebrew/*/libX11.6.dylib
       0x1058b4000 -        0x1058c7fff libxcb.1.1.0.dylib (*) <ce7ef4f1-e5c8-373d-8e74-ec5af408822f> /opt/homebrew/*/libxcb.1.1.0.dylib
       0x10509c000 -        0x10509ffff libXau.6.0.0.dylib (*) <af8acecd-49d7-34fb-9329-a8d20247afab> /opt/homebrew/*/libXau.6.0.0.dylib
       0x104b38000 -        0x104b3bfff libXdmcp.6.dylib (*) <f5f47c63-68c9-3673-95c0-7257dbf8f6d8> /opt/homebrew/*/libXdmcp.6.dylib
       0x105330000 -        0x105333fff libsharpyuv.0.0.1.dylib (*) <aa3d6187-5fa1-31dc-9cf3-37288867d3cd> /opt/homebrew/*/libsharpyuv.0.0.1.dylib
       0x105854000 -        0x10585bfff libhwy.1.0.7.dylib (*) <538a5ce5-8c8f-3c69-8f6b-6e6c20b4b0ce> /opt/homebrew/*/libhwy.1.0.7.dylib
       0x10586c000 -        0x105877fff libbrotlidec.1.1.0.dylib (*) <2b673811-9400-3f1c-8ec0-d2a7d4b75e2c> /opt/homebrew/*/libbrotlidec.1.1.0.dylib
       0x106014000 -        0x106033fff libbrotlicommon.1.1.0.dylib (*) <d6d17b55-1cd9-3744-8d06-c9990225fa39> /opt/homebrew/*/libbrotlicommon.1.1.0.dylib
       0x10620c000 -        0x106297fff libbrotlienc.1.1.0.dylib (*) <9c06eacb-6f5c-3267-a89a-39103dc342fc> /opt/homebrew/*/libbrotlienc.1.1.0.dylib
       0x1058e4000 -        0x1058effff libpostproc.57.1.100.dylib (*) <a61cd228-b5ca-345e-984e-67f8e65b26b8> /opt/homebrew/*/libpostproc.57.1.100.dylib
       0x1070d0000 -        0x10729ffff libtesseract.5.dylib (*) <14acdf45-2915-34a4-8e25-1aaec39f16df> /opt/homebrew/*/libtesseract.5.dylib
       0x106e3c000 -        0x106ebffff libarchive.13.dylib (*) <6fd21b19-1ac0-36f6-b249-7213d8b7b139> /opt/homebrew/*/libarchive.13.dylib
       0x105a1c000 -        0x105a27fff libvidstab.1.2.dylib (*) <5138c8ee-6600-3998-a3ef-4d2e8973eb2b> /opt/homebrew/*/libvidstab.1.2.dylib
       0x106ee4000 -        0x106f3bfff libzmq.5.dylib (*) <93a70f03-df4c-3ce2-b7e2-c04f1d6c5134> /opt/homebrew/*/libzmq.5.dylib
       0x10608c000 -        0x1060bffff libfontconfig.1.dylib (*) <d511ee75-93e0-3650-a4ab-0d9ff686a9c8> /opt/homebrew/*/libfontconfig.1.dylib
       0x107528000 -        0x107697fff libgnutls.30.dylib (*) <a95699ce-2ba7-3ea0-a074-a47cab443c4d> /opt/homebrew/*/libgnutls.30.dylib
       0x106040000 -        0x10605bfff librist.4.dylib (*) <36644d6e-4fe5-3437-98e0-1a17cbc0ba7b> /opt/homebrew/*/librist.4.dylib
       0x107028000 -        0x107093fff libsrt.1.5.3.dylib (*) <8f1edd25-3bc0-3fe8-a48e-46c58921191e> /opt/homebrew/*/libsrt.1.5.3.dylib
       0x1076f0000 -        0x1077f3fff libp11-kit.0.dylib (*) <8e92fb23-8ff3-3627-a7df-67f0946bda41> /opt/homebrew/*/libp11-kit.0.dylib
       0x106fc0000 -        0x106feffff libidn2.0.dylib (*) <23c0bbd6-3b48-370c-8085-38627dce151c> /opt/homebrew/*/libidn2.0.dylib
       0x107868000 -        0x1079fffff libunistring.5.dylib (*) <8368f4a0-5e4c-3345-8529-33b2b6af74df> /opt/homebrew/*/libunistring.5.dylib
       0x105a38000 -        0x105a43fff libtasn1.6.dylib (*) <fcceed8d-738a-329c-9944-1ce357dd25a8> /opt/homebrew/*/libtasn1.6.dylib
       0x1073b8000 -        0x1073effff libnettle.8.8.dylib (*) <04e74e51-5ea3-3261-a5c4-2d6b0f9de5e6> /opt/homebrew/*/libnettle.8.8.dylib
       0x10740c000 -        0x107447fff libhogweed.6.8.dylib (*) <1c53f0c3-5871-30f4-8e65-c87d6b944e16> /opt/homebrew/*/libhogweed.6.8.dylib
       0x107a20000 -        0x107a77fff libgmp.10.dylib (*) <efc29ca3-3b2a-3664-976d-b890d76d3d08> /opt/homebrew/*/libgmp.10.dylib
       0x107a90000 -        0x107ae3fff libmbedcrypto.3.5.0.dylib (*) <d1f4f882-8c1d-3a87-9b94-1c74c073edf7> /opt/homebrew/*/libmbedcrypto.3.5.0.dylib
       0x1053f8000 -        0x1053fbfff libcjson.1.7.16.dylib (*) <710da5eb-22a2-35fd-835e-fed55354d85c> /opt/homebrew/*/libcjson.1.7.16.dylib
       0x107b10000 -        0x107b67fff libssl.3.dylib (*) <d0d1173a-c659-3254-9f53-e2956d2b3e1b> /opt/homebrew/*/libssl.3.dylib
       0x107ee8000 -        0x108123fff libcrypto.3.dylib (*) <b632833e-1f0e-3daf-9e52-34a4ac085538> /opt/homebrew/*/libcrypto.3.dylib
       0x107364000 -        0x107387fff libsodium.23.dylib (*) <f29a3bd9-a506-38ea-99db-3b55109abbed> /opt/homebrew/*/libsodium.23.dylib
       0x108234000 -        0x10840bfff libleptonica.6.dylib (*) <50e7ea81-3040-3c82-a371-236564c0647a> /opt/homebrew/*/libleptonica.6.dylib
       0x105a54000 -        0x105a5bfff libgif.7.2.0.dylib (*) <7be55e9e-806b-3247-a2bd-66e675a88e51> /opt/homebrew/*/libgif.7.2.0.dylib
       0x107b9c000 -        0x107bfffff libtiff.6.dylib (*) <f96096fe-e34a-333a-979b-8b71c1e3d073> /opt/homebrew/*/libtiff.6.dylib
       0x107c20000 -        0x107cc3fff libzstd.1.5.5.dylib (*) <ab1456bc-240e-3a03-af02-06c1e94e6b0f> /opt/homebrew/*/libzstd.1.5.5.dylib
       0x106f80000 -        0x106f9ffff liblz4.1.9.4.dylib (*) <738855ac-4f76-3984-8e9c-ff8c545be731> /opt/homebrew/*/liblz4.1.9.4.dylib
       0x106070000 -        0x106077fff libb2.1.dylib (*) <4e1c175b-9164-3156-8288-9521f88d4379> /opt/homebrew/*/libb2.1.dylib
       0x1060d8000 -        0x1060dbfff libxcb-shm.0.0.0.dylib (*) <0830787c-4131-3d0b-a0ca-50c537f2ca5b> /opt/homebrew/*/libxcb-shm.0.0.0.dylib
       0x1060ec000 -        0x1060effff libxcb-shape.0.0.0.dylib (*) <e964268c-9a89-3aed-97d8-6924845e9a7e> /opt/homebrew/*/libxcb-shape.0.0.0.dylib
       0x106fac000 -        0x106faffff libxcb-xfixes.0.0.0.dylib (*) <7172eed0-18bd-3f8f-a613-2dfbbc0ff527> /opt/homebrew/*/libxcb-xfixes.0.0.0.dylib
       0x108450000 -        0x108563fff libSDL2-2.0.0.dylib (*) <0012d7b8-9ad1-3a74-9303-7d0ed644f7b7> /opt/homebrew/*/libSDL2-2.0.0.dylib
       0x108a84000 -        0x108d2ffff org.python.python (3.11.6, (c) 2001-2023 Python Software Foundation.) <81f21b81-90bb-3981-b606-d50f6bdd3da0> /opt/homebrew/*/Python.framework/Versions/3.11/Python
       0x1028e4000 -        0x102c03fff io.mpv (0.36.0-UNKNOWN) <fac1e068-fb2d-3ae2-8ee8-0850c28d776a> /Users/USER/*/mpv.app/Contents/MacOS/mpv-bundle
       0x18a475000 -        0x18a4affef libsystem_kernel.dylib (*) <a7d3c07d-0a1e-3c4c-8fba-66905e16bf99> /usr/lib/system/libsystem_kernel.dylib
       0x18fbb3000 -        0x190042fff com.apple.SkyLight (1.600.0) <42fd2e33-2bb2-372f-a01f-b2b36c8277b9> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
       0x18dd33000 -        0x18f043fff com.apple.AppKit (6.9) <a4e78dd1-6b6e-3f57-924a-4a6a2e679789> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x18a137000 -        0x18a1ca873 dyld (*) <ffd8ab66-c9ab-31df-ab80-3a3dff367ddd> /usr/lib/dyld
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x18a516000 -        0x18a9ecfff com.apple.CoreFoundation (6.9) <a68b8c77-1dbd-35b0-83fe-42ad58dd6629> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
       0x190720000 -        0x1908ceff7 com.apple.ColorSync (4.13.0) <e2680547-74ff-3c42-a010-848b53e0b2c1> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
       0x190043000 -        0x19071ffff com.apple.CoreGraphics (2.0) <3f5f7fda-47c6-3edd-b427-63a2a2551008> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
       0x1b3ee0000 -        0x1b3ef9fff libCGInterfaces.dylib (*) <ef9222d9-3423-397f-bd44-38030dc6c062> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
       0x192227000 -        0x19260bff7 com.apple.vImage (8.1) <3dd28594-ecd9-3ec6-83bb-f45d7239d44b> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
       0x1b020b000 -        0x1b04b6fff com.apple.MediaPlayer (1.0) <d7534770-b875-32c6-bbd2-dd07a802c8f1> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer
       0x199ce1000 -        0x19a220fff libswiftCore.dylib (*) <9d952ae1-e049-3444-96e3-0a5756c0b89d> /usr/lib/swift/libswiftCore.dylib
       0x18a306000 -        0x18a34cfff libdispatch.dylib (*) <8790ba20-19ec-3a36-8975-e34382d9747c> /usr/lib/system/libdispatch.dylib
       0x18a4b0000 -        0x18a4bcff3 libsystem_pthread.dylib (*) <e4debb6e-421d-33d0-9e17-77ae0e0fe4dc> /usr/lib/system/libsystem_pthread.dylib
       0x18a350000 -        0x18a3ceff3 libsystem_c.dylib (*) <1b84a7e4-8958-330c-98b8-27d491dff69e> /usr/lib/system/libsystem_c.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)
Writable regions: Total=533.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=533.7M(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
ColorSync                          528K       24 
CoreGraphics                        16K        1 
CoreServices                        80K        1 
Dispatch continuations            64.0M        1 
Foundation                         752K        2 
Kernel Alloc Once                   32K        1 
MALLOC                           443.3M       31 
MALLOC guard page                  192K       12 
STACK GUARD                       56.2M       12 
Stack                             13.8M       12 
VM_ALLOCATE                         32K        2 
__AUTH                            1181K      260 
__AUTH_CONST                      19.8M      447 
__CTF                               824        1 
__DATA                            18.5M      520 
__DATA_CONST                      25.3M      547 
__DATA_DIRTY                      1194K      152 
__FONT_DATA                        2352        1 
__LINKEDIT                       899.1M       98 
__OBJC_RO                         70.6M        1 
__OBJC_RW                         2153K        1 
__TEXT                           450.8M      562 
dyld private memory                272K        2 
mapped file                      149.5M       14 
shared memory                     1360K       13 
===========                     =======  ======= 
TOTAL                              2.2G     2719 



-----------
Full Report
-----------

{"app_name":"mpv-bundle","timestamp":"2023-10-13 15:46:20.00 -0700","app_version":"0.36.0-UNKNOWN","slice_uuid":"fac1e068-fb2d-3ae2-8ee8-0850c28d776a","build_version":"","platform":1,"bundleID":"io.mpv","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.0 (23A344)","roots_installed":0,"name":"mpv-bundle","incident_id":"44BC5368-84E1-4F40-913F-F8473EE02138"}
{
  "uptime" : 25000,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "Mac14,2",
  "coalitionID" : 6393,
  "osVersion" : {
    "train" : "macOS 14.0",
    "build" : "23A344",
    "releaseType" : "User"
  },
  "captureTime" : "2023-10-13 15:46:19.9042 -0700",
  "codeSigningMonitor" : 1,
  "incident" : "44BC5368-84E1-4F40-913F-F8473EE02138",
  "pid" : 40429,
  "translated" : false,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2023-10-13 15:46:19.6471 -0700",
  "procStartAbsTime" : 604272515582,
  "procExitAbsTime" : 604278657610,
  "procName" : "mpv-bundle",
  "procPath" : "\/Users\/USER\/*\/mpv.app\/Contents\/MacOS\/mpv-bundle",
  "bundleInfo" : {"CFBundleShortVersionString":"0.36.0-UNKNOWN","CFBundleIdentifier":"io.mpv"},
  "storeInfo" : {"deviceIdentifierForVendor":"AA2CBB38-9645-56EE-BA93-A25DB3076177","thirdParty":true},
  "parentProc" : "launchd",
  "parentPid" : 1,
  "coalitionName" : "io.mpv",
  "crashReporterKey" : "8138033C-B3C3-3D27-F9D9-E4FE4195BE7C",
  "codeSigningID" : "io.mpv",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570425857,
  "codeSigningValidationCategory" : 10,
  "codeSigningTrustLevel" : 4294967295,
  "instructionByteStream" : {"beforePC":"NAEAANQAAAAQAQAAGAEAACABAAAoAQAAMAEAAEwBAAAwQYDSARAA1A==","atPC":"AwEAVH8jA9X9e7+p\/QMAkcww\/pe\/AwCR\/XvBqP8PX9bAA1\/WEC2A0g=="},
  "wakeTime" : 3988,
  "sleepWakeUUID" : "CA0E5047-2D57-48B0-B698-99F2C7BEC727",
  "sip" : "enabled",
  "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
  "termination" : {"code":9,"flags":518,"namespace":"DYLD","reasons":["missing symbol called"]},
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "faultingThread" : 7,
  "threads" : [{"id":345089,"threadState":{"x":[{"value":0},{"value":17183031299},{"value":328565003539},{"value":12107512822275},{"value":126542621442048},{"value":12107512807425},{"value":76},{"value":0},{"value":18446744073709550527},{"value":2819},{"value":29463},{"value":0},{"value":2819},{"value":5383553888},{"value":72057602115734957,"symbolLocation":72057594037927941,"symbol":"OBJC_CLASS_$___NSCFType"},{"value":8077807016,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSCFType"},{"value":18446744073709551569},{"value":8230965328},{"value":0},{"value":0},{"value":76},{"value":12107512807425},{"value":126542621442048},{"value":12107512822275},{"value":6129032808},{"value":328565003539},{"value":17183031299},{"value":17183031299},{"value":3162115}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6614977840},"cpsr":{"value":2684358656},"fp":{"value":6129032448},"sp":{"value":6129032368},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6614902964},"far":{"value":4346003456}},"queue":"com.apple.main-thread","frames":[{"imageOffset":6324,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":97},{"imageOffset":81200,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":97},{"imageOffset":42224,"symbol":"mach_msg_overwrite","symbolLocation":476,"imageIndex":97},{"imageOffset":7224,"symbol":"mach_msg","symbolLocation":24,"imageIndex":97},{"imageOffset":2870628,"symbol":"__CGSWindowConstructWithRegionImpl_block_invoke","symbolLocation":252,"imageIndex":98},{"imageOffset":1253164,"symbol":"SLSRegionPerformWithSerializedBytes","symbolLocation":92,"imageIndex":98},{"imageOffset":721616,"symbol":"SLSNewWindowWithOpaqueShapeAndContext","symbolLocation":880,"imageIndex":98},{"imageOffset":722860,"symbol":"SLSNewWindowWithOpaqueShape","symbolLocation":24,"imageIndex":98},{"imageOffset":13613688,"symbol":"-[NSCGSWindow initWithConnectionID:flags:]","symbolLocation":192,"imageIndex":99},{"imageOffset":13612552,"symbol":"+[NSCGSWindow(NSCGSWindowCreation) windowWithConnectionID:flags:]","symbolLocation":52,"imageIndex":99},{"imageOffset":11719068,"symbol":"_NXCreateWindow","symbolLocation":156,"imageIndex":99},{"imageOffset":1232880,"symbol":"-[NSWindow _commonAwake]","symbolLocation":672,"imageIndex":99},{"imageOffset":307772,"symbol":"-[NSWindow _commonInitFrame:styleMask:backing:defer:]","symbolLocation":972,"imageIndex":99},{"imageOffset":305876,"symbol":"-[NSWindow _initContent:styleMask:backing:defer:contentView:]","symbolLocation":796,"imageIndex":99},{"imageOffset":14675108,"symbol":"-[NSMenuBarReplicantWindow initWithView:]","symbolLocation":92,"imageIndex":99},{"imageOffset":14677152,"symbol":"-[NSMenuBarDisplayWindow _replicantWindowWithView:]","symbolLocation":132,"imageIndex":99},{"imageOffset":14676448,"symbol":"__49-[NSMenuBarDisplayWindow _ensureReplicantWindows]_block_invoke","symbolLocation":156,"imageIndex":99},{"imageOffset":13775196,"symbol":"-[NSMenuBarImpl backingViewsForDisplayID:completionHandler:]","symbolLocation":636,"imageIndex":99},{"imageOffset":14676248,"symbol":"-[NSMenuBarDisplayWindow _ensureReplicantWindows]","symbolLocation":212,"imageIndex":99},{"imageOffset":13702520,"symbol":"__62-[NSMenuBarPresentationInstance _setBoundsAndUpdateResolution]_block_invoke","symbolLocation":736,"imageIndex":99},{"imageOffset":13715872,"symbol":"-[NSMenuBarPresentationInstance _forEachWindowDo:withBlock:]","symbolLocation":476,"imageIndex":99},{"imageOffset":13701740,"symbol":"-[NSMenuBarPresentationInstance _setBoundsAndUpdateResolution]","symbolLocation":124,"imageIndex":99},{"imageOffset":13711624,"symbol":"-[NSMenuBarPresentationInstance _show:shouldNotify:inOrder:forAutoShow:requestVisibility:]","symbolLocation":160,"imageIndex":99},{"imageOffset":13714492,"symbol":"-[NSMenuBarPresentationInstance _updateAggregateUIMode:orderBar:baroloFSMToggle:activeInstance:]","symbolLocation":736,"imageIndex":99},{"imageOffset":13700356,"symbol":"+[NSMenuBarPresentationInstance forEachMenuBarDo:]","symbolLocation":116,"imageIndex":99},{"imageOffset":13713680,"symbol":"+[NSMenuBarPresentationInstance _updateAllAggregateUIModes:orderBar:]","symbolLocation":144,"imageIndex":99},{"imageOffset":13722108,"symbol":"+[NSMenuBarPresentationInstance _setSystemUIMode:withOptions:]","symbolLocation":148,"imageIndex":99},{"imageOffset":186400,"symbol":"-[NSApplication finishLaunching]","symbolLocation":668,"imageIndex":99},{"imageOffset":185180,"symbol":"-[NSApplication run]","symbolLocation":252,"imageIndex":99},{"symbol":"cocoa_run_runloop","inline":true,"imageIndex":96,"imageOffset":1033092,"symbolLocation":24,"sourceLine":269,"sourceFile":"macosx_application.m"},{"imageOffset":1033092,"sourceLine":366,"sourceFile":"macosx_application.m","symbol":"cocoa_main","imageIndex":96,"symbolLocation":588},{"imageOffset":24664,"symbol":"start","symbolLocation":2224,"imageIndex":100}]},{"id":345127,"threadState":{"x":[{"value":8145942304,"symbolLocation":0,"symbol":"__kCFAllocatorSystemDefault"},{"value":8151008328},{"value":1},{"value":0},{"value":0},{"value":0},{"value":10682985089537138608},{"value":28},{"value":0},{"value":18446744073709551615},{"value":5384572880},{"value":7},{"value":6},{"value":5383732144},{"value":72057602115734113,"symbolLocation":72057594037927937,"symbol":"OBJC_CLASS_$___NSCFArray"},{"value":8077806176,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSCFArray"},{"value":8077804776,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSCFDictionary"},{"value":8077804776,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSCFDictionary"},{"value":0},{"value":8077814960,"symbolLocation":0,"symbol":"CFBasicHashCallBackPtrs"},{"value":5410803712},{"value":5402558048},{"value":5402549344},{"value":8143413736,"symbolLocation":0,"symbol":"kCFAllocatorSystemDefault"},{"value":5402550784},{"value":179},{"value":2814029233},{"value":2780474809},{"value":5410803696}],"flavor":"ARM_THREAD_STATE64","lr":{"value":11780290731910043632},"cpsr":{"value":536875008},"fp":{"value":6129580256},"sp":{"value":6129580144},"esr":{"value":2449473607,"description":"(Data Abort) byte write Translation fault"},"pc":{"value":6615669108},"far":{"value":5402574848}},"queue":"*\/accessQueue","frames":[{"imageOffset":113012,"symbol":"__CFBasicHashDrain","symbolLocation":448,"imageIndex":102},{"imageOffset":1375816,"symbol":"_CFRelease","symbolLocation":292,"imageIndex":102},{"imageOffset":328524,"symbol":"__CFBinaryPlistWriteOrPresize","symbolLocation":644,"imageIndex":102},{"imageOffset":327216,"symbol":"CFPropertyListWrite","symbolLocation":204,"imageIndex":102},{"imageOffset":469464,"symbol":"CFPropertyListCreateData","symbolLocation":144,"imageIndex":102},{"imageOffset":77668,"symbol":"AppleCMMCreateTransformProperty","symbolLocation":700,"imageIndex":103},{"imageOffset":76876,"symbol":"ColorSyncTransformInternalCopyProperty","symbolLocation":176,"imageIndex":103},{"imageOffset":86180,"symbol":"ColorSyncTransformIteratorCreate","symbolLocation":312,"imageIndex":103},{"imageOffset":85796,"symbol":"ColorSyncTransformGetIterator","symbolLocation":148,"imageIndex":103},{"imageOffset":85320,"symbol":"ColorSyncTransformIterate","symbolLocation":96,"imageIndex":103},{"imageOffset":116620,"symbol":"CGColorConversionInfoIterateFunctionsWithCallbacks","symbolLocation":596,"imageIndex":104},{"imageOffset":65904,"symbol":"GetColorspaceTransformsWithTransformWithCGColorConversionInfo","symbolLocation":348,"imageIndex":105},{"imageOffset":2262636,"symbol":"vImageConverter_CreateCGPassListWithCGColorConversionInfo","symbolLocation":2104,"imageIndex":106},{"imageOffset":2214672,"symbol":"vImageConverter_CreateWithCGColorConversionInfo","symbolLocation":152,"imageIndex":106},{"imageOffset":97304,"symbol":"CGvImageConverterInitializeShared","symbolLocation":620,"imageIndex":104},{"imageOffset":95224,"symbol":"CGvImageConverterCacheGetRetained","symbolLocation":744,"imageIndex":104},{"imageOffset":94404,"symbol":"CGCMSConverterCreateCachedCGvImageConverter","symbolLocation":80,"imageIndex":104},{"imageOffset":94176,"symbol":"convert_using_vImageConverter","symbolLocation":260,"imageIndex":104},{"imageOffset":92368,"symbol":"convert_icc","symbolLocation":204,"imageIndex":104},{"imageOffset":92132,"symbol":"CGCMSConverterConvert","symbolLocation":140,"imageIndex":104},{"imageOffset":3962660,"symbol":"CGColorTransformConvert","symbolLocation":120,"imageIndex":104},{"imageOffset":109232,"symbol":"CGColorTransformConvertComponentData","symbolLocation":572,"imageIndex":104},{"imageOffset":1242672,"symbol":"+[_NSAxisAlignedVolumeColorGamut gamutWithCGColorSpace:]","symbolLocation":448,"imageIndex":99},{"imageOffset":12463844,"symbol":"__RepSelectionCandidateColorSpaceScore_block_invoke","symbolLocation":148,"imageIndex":99},{"imageOffset":12463676,"symbol":"RepSelectionCandidateColorSpaceScore","symbolLocation":112,"imageIndex":99},{"imageOffset":12463376,"symbol":"RepSelectionCompareColorSpace","symbolLocation":36,"imageIndex":99},{"imageOffset":12460612,"symbol":"-[NSImage(RepSelection) bestRepresentationAmongRepresentations:forHints:]","symbolLocation":1984,"imageIndex":99},{"imageOffset":2352688,"symbol":"-[NSImage _usingBestRepresentationAmongRepresentations:forRect:context:hints:body:]","symbolLocation":220,"imageIndex":99},{"imageOffset":2352416,"symbol":"__53-[NSImage TIFFRepresentationUsingCompression:factor:]_block_invoke","symbolLocation":236,"imageIndex":99},{"imageOffset":88900,"symbol":"-[NSImage _usingRepresentationsPerformBlock:]","symbolLocation":96,"imageIndex":99},{"imageOffset":2352024,"symbol":"-[NSImage TIFFRepresentationUsingCompression:factor:]","symbolLocation":184,"imageIndex":99},{"imageOffset":1458208,"symbol":"MPArtworkImageJPEGRepresentation","symbolLocation":60,"imageIndex":107},{"imageOffset":571696,"symbol":"-[MPMediaItemArtwork jpegDataWithSize:]","symbolLocation":48,"imageIndex":107},{"imageOffset":1125836,"symbol":"___MPToMRNowPlayingInfoDictionary_block_invoke","symbolLocation":288,"imageIndex":107},{"imageOffset":3348948,"symbol":"specialized _SwiftDeferredNSDictionary.enumerateKeysAndObjects(options:using:)","symbolLocation":580,"imageIndex":108},{"imageOffset":785840,"symbol":"@objc _SwiftDeferredNSDictionary.enumerateKeysAndObjects(options:using:)","symbolLocation":48,"imageIndex":108},{"imageOffset":1125176,"symbol":"_MPToMRNowPlayingInfoDictionary","symbolLocation":200,"imageIndex":107},{"imageOffset":1124500,"symbol":"-[MPNowPlayingInfoCenter(NowPlayingInfo) _onQueue_pushNowPlayingInfoAndRetry:]","symbolLocation":268,"imageIndex":107},{"imageOffset":7352,"symbol":"_dispatch_call_block_and_release","symbolLocation":32,"imageIndex":109},{"imageOffset":14608,"symbol":"_dispatch_client_callout","symbolLocation":20,"imageIndex":109},{"imageOffset":44708,"symbol":"_dispatch_lane_serial_drain","symbolLocation":748,"imageIndex":109},{"imageOffset":47572,"symbol":"_dispatch_lane_invoke","symbolLocation":380,"imageIndex":109},{"imageOffset":91676,"symbol":"_dispatch_root_queue_drain_deferred_wlh","symbolLocation":288,"imageIndex":109},{"imageOffset":89744,"symbol":"_dispatch_workloop_worker_thread","symbolLocation":404,"imageIndex":109},{"imageOffset":12564,"symbol":"_pthread_wqthread","symbolLocation":288,"imageIndex":110},{"imageOffset":7728,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":110}]},{"id":345128,"frames":[{"imageOffset":7720,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6130167808},{"value":8451},{"value":6129631232},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6130167808},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6615146024},"far":{"value":5601688816}}},{"id":345137,"frames":[{"imageOffset":7720,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6130741248},{"value":20483},{"value":6130204672},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6130741248},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6615146024},"far":{"value":5326847496}}},{"id":345138,"frames":[{"imageOffset":7720,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6131314688},{"value":20227},{"value":6130778112},{"value":6131313536},{"value":5193732},{"value":1},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6131312592},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6615146024},"far":{"value":5384650752}}},{"id":345148,"name":"*\/playback core (OSX)","threadState":{"x":[{"value":18446744073709551612},{"value":0},{"value":4294967295},{"value":0},{"value":8077708928,"symbolLocation":0,"symbol":"_dispatch_main_q"},{"value":18},{"value":120},{"value":384},{"value":0},{"value":4479538496},{"value":3},{"value":16383},{"value":68719476736},{"value":9005068950962176},{"value":72057598379310881,"symbolLocation":72057594037927937,"symbol":"OBJC_CLASS_$_EventsResponder"},{"value":4341382944,"symbolLocation":0,"symbol":"OBJC_CLASS_$_EventsResponder"},{"value":515},{"value":8143297200},{"value":0},{"value":4294967295},{"value":0},{"value":6131887728},{"value":16777217},{"value":5385783888},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6613410560},"cpsr":{"value":1073745920},"fp":{"value":6131887536},"sp":{"value":6131887504},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6614910572},"far":{"value":5402517504}},"frames":[{"imageOffset":13932,"symbol":"__ulock_wait","symbolLocation":8,"imageIndex":97},{"imageOffset":17152,"symbol":"_dlock_wait","symbolLocation":56,"imageIndex":109},{"imageOffset":16564,"symbol":"_dispatch_thread_event_wait_slow","symbolLocation":56,"imageIndex":109},{"imageOffset":77744,"symbol":"__DISPATCH_WAIT_FOR_QUEUE__","symbolLocation":368,"imageIndex":109},{"imageOffset":76636,"symbol":"_dispatch_sync_f_slow","symbolLocation":148,"imageIndex":109},{"imageOffset":1034456,"sourceLine":251,"sourceFile":"macosx_events.m","symbol":"-[EventsResponder setMpvHandle:]","imageIndex":96,"symbolLocation":88},{"imageOffset":1033592,"sourceLine":157,"sourceFile":"macosx_events.m","symbol":"cocoa_set_mpv_handle","imageIndex":96,"symbolLocation":36},{"imageOffset":717648,"sourceLine":401,"sourceFile":"main.c","symbol":"mp_initialize","imageIndex":96,"symbolLocation":556},{"imageOffset":718128,"sourceLine":437,"sourceFile":"main.c","symbol":"mpv_main","imageIndex":96,"symbolLocation":76},{"imageOffset":1033228,"sourceLine":278,"sourceFile":"macosx_application.m","symbol":"playback_thread","imageIndex":96,"symbolLocation":48},{"imageOffset":28724,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":110},{"imageOffset":7740,"symbol":"thread_start","symbolLocation":8,"imageIndex":110}]},{"id":345165,"name":"*\/log-file","threadState":{"x":[{"value":1216},{"value":0},{"value":1216},{"value":5402360960},{"value":8388321},{"value":17},{"value":32},{"value":0},{"value":6613891092,"symbolLocation":0,"symbol":"__swrite"},{"value":1107393728},{"value":8077725168,"symbolLocation":32,"symbol":"usual_extra"},{"value":345165},{"value":1},{"value":0},{"value":2},{"value":0},{"value":397},{"value":8230983240},{"value":0},{"value":8077728672,"symbolLocation":0,"symbol":"usual"},{"value":1216},{"value":5402359808},{"value":4340641233},{"value":5410737472},{"value":8077728672,"symbolLocation":0,"symbol":"usual"},{"value":18446744063709551616},{"value":4741671816366391296},{"value":4341140536,"symbolLocation":0,"symbol":"mp_log_levels"},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6613891116},"cpsr":{"value":4096},"fp":{"value":6132461248},"sp":{"value":6132461248},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6614919044},"far":{"value":6102941696}},"frames":[{"imageOffset":22404,"symbol":"__write_nocancel","symbolLocation":8,"imageIndex":97},{"imageOffset":194604,"symbol":"__swrite","symbolLocation":24,"imageIndex":111},{"imageOffset":71960,"symbol":"_swrite","symbolLocation":108,"imageIndex":111},{"imageOffset":64136,"symbol":"__sflush","symbolLocation":232,"imageIndex":111},{"imageOffset":63784,"symbol":"fflush","symbolLocation":36,"imageIndex":111},{"imageOffset":292712,"sourceLine":556,"sourceFile":"msg.c","symbol":"log_file_thread","imageIndex":96,"symbolLocation":232},{"imageOffset":28724,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":110},{"imageOffset":7740,"symbol":"thread_start","symbolLocation":8,"imageIndex":110}]},{"triggered":true,"id":345166,"name":"*\/lua script (osc)","threadState":{"x":[{"value":6},{"value":9},{"value":6133032448},{"value":20},{"value":6133031424},{"value":0},{"value":0},{"value":2288},{"value":32},{"value":6133031294},{"value":10},{"value":0},{"value":52},{"value":0},{"value":4294967295},{"value":0},{"value":521},{"value":6611510140,"symbolLocation":416,"symbol":"__simple_bprintf"},{"value":0},{"value":0},{"value":6133031424},{"value":20},{"value":6133032448},{"value":9},{"value":6},{"value":5410794576},{"value":5385776720},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6612033800},"cpsr":{"value":1073745920},"fp":{"value":6133031376},"sp":{"value":6133031312},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6611983176,"matchesCrashFrame":1},"far":{"value":4346003456}},"frames":[{"imageOffset":486216,"symbol":"__abort_with_payload","symbolLocation":8,"imageIndex":100},{"imageOffset":536840,"symbol":"abort_with_payload_wrapper_internal","symbolLocation":104,"imageIndex":100},{"imageOffset":536892,"symbol":"abort_with_payload","symbolLocation":16,"imageIndex":100},{"imageOffset":42264,"symbol":"dyld4::halt(char const*, dyld4::StructuredError const*)","symbolLocation":304,"imageIndex":100},{"imageOffset":270744,"symbol":"dyld4::APIs::_dyld_missing_symbol_abort()","symbolLocation":28,"imageIndex":100},{"imageOffset":1094940,"sourceLine":460,"sourceFile":"lua.c","symbol":"load_lua","imageIndex":96,"symbolLocation":212},{"imageOffset":750288,"sourceLine":93,"sourceFile":"scripting.c","symbol":"run_script","imageIndex":96,"symbolLocation":100},{"imageOffset":750420,"sourceLine":105,"sourceFile":"scripting.c","symbol":"script_thread","imageIndex":96,"symbolLocation":32},{"imageOffset":28724,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":110},{"imageOffset":7740,"symbol":"thread_start","symbolLocation":8,"imageIndex":110}]},{"id":345167,"frames":[{"imageOffset":7732,"symbol":"thread_start","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6133608448},{"value":29699},{"sourceLine":101,"value":4338594612,"sourceFile":"scripting.c","symbol":"script_thread","symbolLocation":0},{"value":5410788944},{"value":6133608448},{"value":419432703},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6133608448},"esr":{"value":0,"description":" Address size fault"},"pc":{"value":6615146036},"far":{"value":0}}},{"id":345168,"frames":[{"imageOffset":7732,"symbol":"thread_start","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6134181888},{"value":23299},{"sourceLine":101,"value":4338594612,"sourceFile":"scripting.c","symbol":"script_thread","symbolLocation":0},{"value":5410796688},{"value":6134181888},{"value":419432703},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6134181888},"esr":{"value":0,"description":" Address size fault"},"pc":{"value":6615146036},"far":{"value":0}}},{"id":345169,"frames":[{"imageOffset":7732,"symbol":"thread_start","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6134755328},{"value":29443},{"sourceLine":101,"value":4338594612,"sourceFile":"scripting.c","symbol":"script_thread","symbolLocation":0},{"value":5410798448},{"value":6134755328},{"value":419432703},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6134755328},"esr":{"value":0,"description":" Address size fault"},"pc":{"value":6615146036},"far":{"value":0}}},{"id":345170,"frames":[{"imageOffset":7732,"symbol":"thread_start","symbolLocation":0,"imageIndex":110}],"threadState":{"x":[{"value":6135328768},{"value":23555},{"sourceLine":101,"value":4338594612,"sourceFile":"scripting.c","symbol":"script_thread","symbolLocation":0},{"value":5410800192},{"value":6135328768},{"value":419432703},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6135328768},"esr":{"value":0,"description":" Address size fault"},"pc":{"value":6615146036},"far":{"value":0}}}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 4344905728,
    "size" : 49152,
    "uuid" : "562f95b3-8118-3d61-a13f-34e819dd863d",
    "path" : "\/usr\/lib\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347052032,
    "size" : 147456,
    "uuid" : "6ef87aad-bac6-3dfd-909b-eec70da343de",
    "path" : "\/opt\/homebrew\/*\/libass.9.dylib",
    "name" : "libass.9.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4357029888,
    "size" : 9093120,
    "uuid" : "7970833c-6c9b-301c-9c06-8c54ede0ea44",
    "path" : "\/opt\/homebrew\/*\/libavcodec.60.3.100.dylib",
    "name" : "libavcodec.60.3.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4350377984,
    "size" : 2441216,
    "uuid" : "640f5293-baf1-3120-8a3c-7d22f47a1007",
    "path" : "\/opt\/homebrew\/*\/libavfilter.9.3.100.dylib",
    "name" : "libavfilter.9.3.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4353490944,
    "size" : 1900544,
    "uuid" : "17a8cab3-2e67-386e-a5ed-55db8fb15111",
    "path" : "\/opt\/homebrew\/*\/libavformat.60.3.100.dylib",
    "name" : "libavformat.60.3.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347887616,
    "size" : 442368,
    "uuid" : "d95275ff-548a-3d94-aae4-1890eedc49cb",
    "path" : "\/opt\/homebrew\/*\/libavutil.58.2.100.dylib",
    "name" : "libavutil.58.2.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347281408,
    "size" : 81920,
    "uuid" : "632efdcb-7357-3276-8c70-09dc1d512038",
    "path" : "\/opt\/homebrew\/*\/libswresample.4.10.100.dylib",
    "name" : "libswresample.4.10.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4349591552,
    "size" : 344064,
    "uuid" : "9e295cd1-bd32-3427-a744-b0c8e81579d0",
    "path" : "\/opt\/homebrew\/*\/libswscale.7.1.100.dylib",
    "name" : "libswscale.7.1.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4350033920,
    "size" : 212992,
    "uuid" : "d72fc4d3-1e42-3da8-bdd9-227a17032176",
    "path" : "\/opt\/homebrew\/*\/libmujs.dylib",
    "name" : "libmujs.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4355735552,
    "size" : 245760,
    "uuid" : "603406d0-1ef9-3185-b999-767d5657619a",
    "path" : "\/opt\/homebrew\/*\/liblcms2.2.dylib",
    "name" : "liblcms2.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347412480,
    "size" : 131072,
    "uuid" : "5d61e52c-301d-36b3-88a3-23aeaaa1654c",
    "path" : "\/opt\/homebrew\/*\/libavdevice.60.1.100.dylib",
    "name" : "libavdevice.60.1.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4356472832,
    "size" : 262144,
    "uuid" : "92284a2b-bde9-3c1a-88c3-628390a8dc50",
    "path" : "\/opt\/homebrew\/*\/libbluray.2.dylib",
    "name" : "libbluray.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4373348352,
    "size" : 180224,
    "uuid" : "76d42c1d-b3bd-37d3-a523-c05e0663173e",
    "path" : "\/opt\/homebrew\/*\/librubberband.2.dylib",
    "name" : "librubberband.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4375265280,
    "size" : 1490944,
    "uuid" : "93371c36-d267-342d-91c2-028c70cb8ffd",
    "path" : "\/opt\/homebrew\/*\/libsamplerate.0.2.2.dylib",
    "name" : "libsamplerate.0.2.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4347625472,
    "size" : 163840,
    "uuid" : "4cfc2cfa-3d9b-30d7-aca7-67ac382501a6",
    "path" : "\/opt\/homebrew\/*\/libuchardet.0.0.8.dylib",
    "name" : "libuchardet.0.0.8.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4374478848,
    "size" : 524288,
    "uuid" : "d14047f0-f023-3cc6-9046-4de3ed1d5c6b",
    "path" : "\/opt\/homebrew\/*\/libvapoursynth.dylib",
    "name" : "libvapoursynth.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4346904576,
    "size" : 16384,
    "uuid" : "991db6d3-d50d-336b-a967-ee7c1ac39a55",
    "path" : "\/opt\/homebrew\/*\/libvapoursynth-script.0.dylib",
    "name" : "libvapoursynth-script.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4376838144,
    "size" : 229376,
    "uuid" : "b376dfc7-a9d4-3b51-b41a-8c45ed45fc49",
    "path" : "\/opt\/homebrew\/*\/libzimg.2.dylib",
    "name" : "libzimg.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4377247744,
    "size" : 376832,
    "uuid" : "c37e7098-1b9a-3b38-bb38-53a423960a81",
    "path" : "\/opt\/homebrew\/*\/libjpeg.8.3.2.dylib",
    "name" : "libjpeg.8.3.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4377722880,
    "size" : 507904,
    "uuid" : "166fea07-2eb1-3cc6-bd74-1f25515bc9e0",
    "path" : "\/opt\/homebrew\/*\/libfreetype.6.dylib",
    "name" : "libfreetype.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4356292608,
    "size" : 114688,
    "uuid" : "5257a32b-463b-38b0-a487-4b1b7f2e1f65",
    "path" : "\/opt\/homebrew\/*\/libfribidi.0.dylib",
    "name" : "libfribidi.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4379590656,
    "size" : 786432,
    "uuid" : "3fc61e9d-f66e-34d6-9d4d-3a6cc8be30a0",
    "path" : "\/opt\/homebrew\/*\/libharfbuzz.0.dylib",
    "name" : "libharfbuzz.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4356833280,
    "size" : 131072,
    "uuid" : "aae854ec-0337-3365-945e-9e394132e5a7",
    "path" : "\/opt\/homebrew\/*\/libunibreak.5.dylib",
    "name" : "libunibreak.5.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4373905408,
    "size" : 147456,
    "uuid" : "989cbc46-f69f-3b48-a141-b4d92160fbd8",
    "path" : "\/opt\/homebrew\/*\/libpng16.16.dylib",
    "name" : "libpng16.16.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4380803072,
    "size" : 983040,
    "uuid" : "69b76dd6-3e75-3468-aeb4-20bfd2f70990",
    "path" : "\/opt\/homebrew\/*\/libglib-2.0.0.dylib",
    "name" : "libglib-2.0.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4373692416,
    "size" : 81920,
    "uuid" : "1bbb20c8-b0d3-318a-a229-f81c8a8dd304",
    "path" : "\/opt\/homebrew\/*\/libgraphite2.3.2.1.dylib",
    "name" : "libgraphite2.3.2.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4374118400,
    "size" : 98304,
    "uuid" : "8c70326b-fefe-3e4d-9064-22e730735c5f",
    "path" : "\/opt\/homebrew\/*\/libintl.8.dylib",
    "name" : "libintl.8.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4378935296,
    "size" : 475136,
    "uuid" : "935230cb-cdd4-3fc6-b188-4865fdfea7b8",
    "path" : "\/opt\/homebrew\/*\/libpcre2-8.0.dylib",
    "name" : "libpcre2-8.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4383588352,
    "size" : 1376256,
    "uuid" : "bb4c9fb4-ba14-309b-bab3-2a0b7a108a5c",
    "path" : "\/opt\/homebrew\/*\/libvpx.8.dylib",
    "name" : "libvpx.8.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4356112384,
    "size" : 32768,
    "uuid" : "ea3ff34d-d209-3bb3-a816-a16352033f58",
    "path" : "\/opt\/homebrew\/*\/libwebpmux.3.0.13.dylib",
    "name" : "libwebpmux.3.0.13.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4378378240,
    "size" : 131072,
    "uuid" : "7c1e4570-c041-3609-be6b-5baca080a220",
    "path" : "\/opt\/homebrew\/*\/liblzma.5.dylib",
    "name" : "liblzma.5.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4378574848,
    "size" : 65536,
    "uuid" : "56102928-a424-3ce0-9056-b10c27fcc974",
    "path" : "\/opt\/homebrew\/*\/libaribb24.0.dylib",
    "name" : "libaribb24.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4385177600,
    "size" : 638976,
    "uuid" : "a1f43b2c-b140-3002-adb5-e259d9c5d652",
    "path" : "\/opt\/homebrew\/*\/libdav1d.6.dylib",
    "name" : "libdav1d.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4378689536,
    "size" : 65536,
    "uuid" : "8c89779f-c85e-3767-b3ef-2525c9188e01",
    "path" : "\/opt\/homebrew\/*\/libopencore-amrwb.0.dylib",
    "name" : "libopencore-amrwb.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4356194304,
    "size" : 32768,
    "uuid" : "cbe4a36a-6d1c-3956-a527-c8b8ac6266d6",
    "path" : "\/opt\/homebrew\/*\/libsnappy.1.1.10.dylib",
    "name" : "libsnappy.1.1.10.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4389797888,
    "size" : 3047424,
    "uuid" : "b5b88e5f-bcf7-36bc-8b8a-10f8724a9c2d",
    "path" : "\/opt\/homebrew\/*\/libaom.3.7.0.dylib",
    "name" : "libaom.3.7.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4386258944,
    "size" : 163840,
    "uuid" : "7f6c7636-6232-359f-8730-04df1a01988b",
    "path" : "\/opt\/homebrew\/*\/libvmaf.1.dylib",
    "name" : "libvmaf.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4393648128,
    "size" : 1245184,
    "uuid" : "3b43c729-1255-3570-b574-1c1b2b41906e",
    "path" : "\/opt\/homebrew\/*\/libjxl.0.8.2.dylib",
    "name" : "libjxl.0.8.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4346986496,
    "size" : 16384,
    "uuid" : "94d951ed-6858-3a41-b9d9-47228d965380",
    "path" : "\/opt\/homebrew\/*\/libjxl_threads.0.8.2.dylib",
    "name" : "libjxl_threads.0.8.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4382326784,
    "size" : 212992,
    "uuid" : "26bda67f-5769-3e4b-b276-0c0220b8904e",
    "path" : "\/opt\/homebrew\/*\/libmp3lame.0.dylib",
    "name" : "libmp3lame.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4382015488,
    "size" : 131072,
    "uuid" : "18506ae5-a51c-3a10-8456-d898f2e83709",
    "path" : "\/opt\/homebrew\/*\/libopencore-amrnb.0.dylib",
    "name" : "libopencore-amrnb.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4383162368,
    "size" : 278528,
    "uuid" : "4af54edf-0a9e-39bf-9d74-b1c154c693eb",
    "path" : "\/opt\/homebrew\/*\/libopenjp2.2.5.0.dylib",
    "name" : "libopenjp2.2.5.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4387241984,
    "size" : 278528,
    "uuid" : "bee394c1-7ed2-3725-aeeb-3bd524f58553",
    "path" : "\/opt\/homebrew\/*\/libopus.0.dylib",
    "name" : "libopus.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4398481408,
    "size" : 1900544,
    "uuid" : "d847bf22-8fdf-3625-b94a-1da2eb96ff7d",
    "path" : "\/opt\/homebrew\/*\/librav1e.0.6.6.dylib",
    "name" : "librav1e.0.6.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4378804224,
    "size" : 81920,
    "uuid" : "faee045a-71af-3c95-9f7a-ed2266cfe734",
    "path" : "\/opt\/homebrew\/*\/libspeex.1.dylib",
    "name" : "libspeex.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4401659904,
    "size" : 2113536,
    "uuid" : "2f9a5156-88e5-3060-be3b-abb38151f914",
    "path" : "\/opt\/homebrew\/*\/libSvtAv1Enc.1.7.0.dylib",
    "name" : "libSvtAv1Enc.1.7.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4382818304,
    "size" : 147456,
    "uuid" : "71488375-eed3-385b-90ea-05927ea1faaf",
    "path" : "\/opt\/homebrew\/*\/libtheoraenc.1.dylib",
    "name" : "libtheoraenc.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4374380544,
    "size" : 49152,
    "uuid" : "797529f1-c2ea-329a-9028-e744c5254b07",
    "path" : "\/opt\/homebrew\/*\/libtheoradec.1.dylib",
    "name" : "libtheoradec.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4374282240,
    "size" : 32768,
    "uuid" : "e9de71f2-7a0c-3397-b45e-bebe989a0aee",
    "path" : "\/opt\/homebrew\/*\/libogg.0.dylib",
    "name" : "libogg.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4387782656,
    "size" : 147456,
    "uuid" : "3903cb17-a92a-3de0-8e0a-a11fe8fee925",
    "path" : "\/opt\/homebrew\/*\/libvorbis.0.dylib",
    "name" : "libvorbis.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4388716544,
    "size" : 491520,
    "uuid" : "abdef41d-3033-3ff6-be3c-71892cd00160",
    "path" : "\/opt\/homebrew\/*\/libvorbisenc.2.dylib",
    "name" : "libvorbisenc.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4388339712,
    "size" : 262144,
    "uuid" : "f9d4f5c0-9654-337f-9977-f11522c8440c",
    "path" : "\/opt\/homebrew\/*\/libwebp.7.1.8.dylib",
    "name" : "libwebp.7.1.8.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4405411840,
    "size" : 1196032,
    "uuid" : "cdbfaf38-a184-31fe-abd6-7ff7ddf2f0ef",
    "path" : "\/opt\/homebrew\/*\/libx264.164.dylib",
    "name" : "libx264.164.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4407738368,
    "size" : 2179072,
    "uuid" : "6301b745-c70c-3853-bfa6-1a0c1086a6de",
    "path" : "\/opt\/homebrew\/*\/libx265.199.dylib",
    "name" : "libx265.199.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4395302912,
    "size" : 131072,
    "uuid" : "beec6f1f-a1a0-3712-b890-8360232ae819",
    "path" : "\/opt\/homebrew\/*\/libsoxr.0.1.2.dylib",
    "name" : "libsoxr.0.1.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4396744704,
    "size" : 868352,
    "uuid" : "e34d1012-2916-30a6-80cb-a797f99a8cb5",
    "path" : "\/opt\/homebrew\/*\/libX11.6.dylib",
    "name" : "libX11.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4387979264,
    "size" : 81920,
    "uuid" : "ce7ef4f1-e5c8-373d-8e74-ec5af408822f",
    "path" : "\/opt\/homebrew\/*\/libxcb.1.1.0.dylib",
    "name" : "libxcb.1.1.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4379492352,
    "size" : 16384,
    "uuid" : "af8acecd-49d7-34fb-9329-a8d20247afab",
    "path" : "\/opt\/homebrew\/*\/libXau.6.0.0.dylib",
    "name" : "libXau.6.0.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4373839872,
    "size" : 16384,
    "uuid" : "f5f47c63-68c9-3673-95c0-7257dbf8f6d8",
    "path" : "\/opt\/homebrew\/*\/libXdmcp.6.dylib",
    "name" : "libXdmcp.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4382195712,
    "size" : 16384,
    "uuid" : "aa3d6187-5fa1-31dc-9cf3-37288867d3cd",
    "path" : "\/opt\/homebrew\/*\/libsharpyuv.0.0.1.dylib",
    "name" : "libsharpyuv.0.0.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4387586048,
    "size" : 32768,
    "uuid" : "538a5ce5-8c8f-3c69-8f6b-6e6c20b4b0ce",
    "path" : "\/opt\/homebrew\/*\/libhwy.1.0.7.dylib",
    "name" : "libhwy.1.0.7.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4387684352,
    "size" : 49152,
    "uuid" : "2b673811-9400-3f1c-8ec0-d2a7d4b75e2c",
    "path" : "\/opt\/homebrew\/*\/libbrotlidec.1.1.0.dylib",
    "name" : "libbrotlidec.1.1.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4395712512,
    "size" : 131072,
    "uuid" : "d6d17b55-1cd9-3744-8d06-c9990225fa39",
    "path" : "\/opt\/homebrew\/*\/libbrotlicommon.1.1.0.dylib",
    "name" : "libbrotlicommon.1.1.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4397776896,
    "size" : 573440,
    "uuid" : "9c06eacb-6f5c-3267-a89a-39103dc342fc",
    "path" : "\/opt\/homebrew\/*\/libbrotlienc.1.1.0.dylib",
    "name" : "libbrotlienc.1.1.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4388175872,
    "size" : 49152,
    "uuid" : "a61cd228-b5ca-345e-984e-67f8e65b26b8",
    "path" : "\/opt\/homebrew\/*\/libpostproc.57.1.100.dylib",
    "name" : "libpostproc.57.1.100.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4413259776,
    "size" : 1900544,
    "uuid" : "14acdf45-2915-34a4-8e25-1aaec39f16df",
    "path" : "\/opt\/homebrew\/*\/libtesseract.5.dylib",
    "name" : "libtesseract.5.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4410556416,
    "size" : 540672,
    "uuid" : "6fd21b19-1ac0-36f6-b249-7213d8b7b139",
    "path" : "\/opt\/homebrew\/*\/libarchive.13.dylib",
    "name" : "libarchive.13.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4389453824,
    "size" : 49152,
    "uuid" : "5138c8ee-6600-3998-a3ef-4d2e8973eb2b",
    "path" : "\/opt\/homebrew\/*\/libvidstab.1.2.dylib",
    "name" : "libvidstab.1.2.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4411244544,
    "size" : 360448,
    "uuid" : "93a70f03-df4c-3ce2-b7e2-c04f1d6c5134",
    "path" : "\/opt\/homebrew\/*\/libzmq.5.dylib",
    "name" : "libzmq.5.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4396204032,
    "size" : 212992,
    "uuid" : "d511ee75-93e0-3650-a4ab-0d9ff686a9c8",
    "path" : "\/opt\/homebrew\/*\/libfontconfig.1.dylib",
    "name" : "libfontconfig.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4417814528,
    "size" : 1507328,
    "uuid" : "a95699ce-2ba7-3ea0-a074-a47cab443c4d",
    "path" : "\/opt\/homebrew\/*\/libgnutls.30.dylib",
    "name" : "libgnutls.30.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4395892736,
    "size" : 114688,
    "uuid" : "36644d6e-4fe5-3437-98e0-1a17cbc0ba7b",
    "path" : "\/opt\/homebrew\/*\/librist.4.dylib",
    "name" : "librist.4.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4412571648,
    "size" : 442368,
    "uuid" : "8f1edd25-3bc0-3fe8-a48e-46c58921191e",
    "path" : "\/opt\/homebrew\/*\/libsrt.1.5.3.dylib",
    "name" : "libsrt.1.5.3.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4419682304,
    "size" : 1064960,
    "uuid" : "8e92fb23-8ff3-3627-a7df-67f0946bda41",
    "path" : "\/opt\/homebrew\/*\/libp11-kit.0.dylib",
    "name" : "libp11-kit.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4412145664,
    "size" : 196608,
    "uuid" : "23c0bbd6-3b48-370c-8085-38627dce151c",
    "path" : "\/opt\/homebrew\/*\/libidn2.0.dylib",
    "name" : "libidn2.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4421222400,
    "size" : 1671168,
    "uuid" : "8368f4a0-5e4c-3345-8529-33b2b6af74df",
    "path" : "\/opt\/homebrew\/*\/libunistring.5.dylib",
    "name" : "libunistring.5.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4389568512,
    "size" : 49152,
    "uuid" : "fcceed8d-738a-329c-9944-1ce357dd25a8",
    "path" : "\/opt\/homebrew\/*\/libtasn1.6.dylib",
    "name" : "libtasn1.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4416307200,
    "size" : 229376,
    "uuid" : "04e74e51-5ea3-3261-a5c4-2d6b0f9de5e6",
    "path" : "\/opt\/homebrew\/*\/libnettle.8.8.dylib",
    "name" : "libnettle.8.8.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4416651264,
    "size" : 245760,
    "uuid" : "1c53f0c3-5871-30f4-8e65-c87d6b944e16",
    "path" : "\/opt\/homebrew\/*\/libhogweed.6.8.dylib",
    "name" : "libhogweed.6.8.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4423024640,
    "size" : 360448,
    "uuid" : "efc29ca3-3b2a-3664-976d-b890d76d3d08",
    "path" : "\/opt\/homebrew\/*\/libgmp.10.dylib",
    "name" : "libgmp.10.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4423483392,
    "size" : 344064,
    "uuid" : "d1f4f882-8c1d-3a87-9b94-1c74c073edf7",
    "path" : "\/opt\/homebrew\/*\/libmbedcrypto.3.5.0.dylib",
    "name" : "libmbedcrypto.3.5.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4383014912,
    "size" : 16384,
    "uuid" : "710da5eb-22a2-35fd-835e-fed55354d85c",
    "path" : "\/opt\/homebrew\/*\/libcjson.1.7.16.dylib",
    "name" : "libcjson.1.7.16.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4424007680,
    "size" : 360448,
    "uuid" : "d0d1173a-c659-3254-9f53-e2956d2b3e1b",
    "path" : "\/opt\/homebrew\/*\/libssl.3.dylib",
    "name" : "libssl.3.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4428038144,
    "size" : 2342912,
    "uuid" : "b632833e-1f0e-3daf-9e52-34a4ac085538",
    "path" : "\/opt\/homebrew\/*\/libcrypto.3.dylib",
    "name" : "libcrypto.3.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4415963136,
    "size" : 147456,
    "uuid" : "f29a3bd9-a506-38ea-99db-3b55109abbed",
    "path" : "\/opt\/homebrew\/*\/libsodium.23.dylib",
    "name" : "libsodium.23.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4431495168,
    "size" : 1933312,
    "uuid" : "50e7ea81-3040-3c82-a371-236564c0647a",
    "path" : "\/opt\/homebrew\/*\/libleptonica.6.dylib",
    "name" : "libleptonica.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4389683200,
    "size" : 32768,
    "uuid" : "7be55e9e-806b-3247-a2bd-66e675a88e51",
    "path" : "\/opt\/homebrew\/*\/libgif.7.2.0.dylib",
    "name" : "libgif.7.2.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4424581120,
    "size" : 409600,
    "uuid" : "f96096fe-e34a-333a-979b-8b71c1e3d073",
    "path" : "\/opt\/homebrew\/*\/libtiff.6.dylib",
    "name" : "libtiff.6.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4425121792,
    "size" : 671744,
    "uuid" : "ab1456bc-240e-3a03-af02-06c1e94e6b0f",
    "path" : "\/opt\/homebrew\/*\/libzstd.1.5.5.dylib",
    "name" : "libzstd.1.5.5.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4411883520,
    "size" : 131072,
    "uuid" : "738855ac-4f76-3984-8e9c-ff8c545be731",
    "path" : "\/opt\/homebrew\/*\/liblz4.1.9.4.dylib",
    "name" : "liblz4.1.9.4.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4396089344,
    "size" : 32768,
    "uuid" : "4e1c175b-9164-3156-8288-9521f88d4379",
    "path" : "\/opt\/homebrew\/*\/libb2.1.dylib",
    "name" : "libb2.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4396515328,
    "size" : 16384,
    "uuid" : "0830787c-4131-3d0b-a0ca-50c537f2ca5b",
    "path" : "\/opt\/homebrew\/*\/libxcb-shm.0.0.0.dylib",
    "name" : "libxcb-shm.0.0.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4396597248,
    "size" : 16384,
    "uuid" : "e964268c-9a89-3aed-97d8-6924845e9a7e",
    "path" : "\/opt\/homebrew\/*\/libxcb-shape.0.0.0.dylib",
    "name" : "libxcb-shape.0.0.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4412063744,
    "size" : 16384,
    "uuid" : "7172eed0-18bd-3f8f-a613-2dfbbc0ff527",
    "path" : "\/opt\/homebrew\/*\/libxcb-xfixes.0.0.0.dylib",
    "name" : "libxcb-xfixes.0.0.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4433707008,
    "size" : 1130496,
    "uuid" : "0012d7b8-9ad1-3a74-9303-7d0ed644f7b7",
    "path" : "\/opt\/homebrew\/*\/libSDL2-2.0.0.dylib",
    "name" : "libSDL2-2.0.0.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4440211456,
    "CFBundleShortVersionString" : "3.11.6, (c) 2001-2023 Python Software Foundation.",
    "CFBundleIdentifier" : "org.python.python",
    "size" : 2801664,
    "uuid" : "81f21b81-90bb-3981-b606-d50f6bdd3da0",
    "path" : "\/opt\/homebrew\/*\/Python.framework\/Versions\/3.11\/Python",
    "name" : "Python",
    "CFBundleVersion" : "3.11.6"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4337844224,
    "CFBundleShortVersionString" : "0.36.0-UNKNOWN",
    "CFBundleIdentifier" : "io.mpv",
    "size" : 3276800,
    "uuid" : "fac1e068-fb2d-3ae2-8ee8-0850c28d776a",
    "path" : "\/Users\/USER\/*\/mpv.app\/Contents\/MacOS\/mpv-bundle",
    "name" : "mpv-bundle"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6614896640,
    "size" : 241648,
    "uuid" : "a7d3c07d-0a1e-3c4c-8fba-66905e16bf99",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6706376704,
    "CFBundleShortVersionString" : "1.600.0",
    "CFBundleIdentifier" : "com.apple.SkyLight",
    "size" : 4784128,
    "uuid" : "42fd2e33-2bb2-372f-a01f-b2b36c8277b9",
    "path" : "\/System\/Library\/PrivateFrameworks\/SkyLight.framework\/Versions\/A\/SkyLight",
    "name" : "SkyLight"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6674395136,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.AppKit",
    "size" : 19992576,
    "uuid" : "a4e78dd1-6b6e-3f57-924a-4a6a2e679789",
    "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit",
    "name" : "AppKit",
    "CFBundleVersion" : "2487"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6611496960,
    "size" : 604276,
    "uuid" : "ffd8ab66-c9ab-31df-ab80-3a3dff367ddd",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6615556096,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 5074944,
    "uuid" : "a68b8c77-1dbd-35b0-83fe-42ad58dd6629",
    "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2048.1.403"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6718357504,
    "CFBundleShortVersionString" : "4.13.0",
    "CFBundleIdentifier" : "com.apple.ColorSync",
    "size" : 1765368,
    "uuid" : "e2680547-74ff-3c42-a010-848b53e0b2c1",
    "path" : "\/System\/Library\/Frameworks\/ColorSync.framework\/Versions\/A\/ColorSync",
    "name" : "ColorSync",
    "CFBundleVersion" : "3730"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6711160832,
    "CFBundleShortVersionString" : "2.0",
    "CFBundleIdentifier" : "com.apple.CoreGraphics",
    "size" : 7196672,
    "uuid" : "3f5f7fda-47c6-3edd-b427-63a2a2551008",
    "path" : "\/System\/Library\/Frameworks\/CoreGraphics.framework\/Versions\/A\/CoreGraphics",
    "name" : "CoreGraphics",
    "CFBundleVersion" : "1774.0.4.3"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7313686528,
    "size" : 106496,
    "uuid" : "ef9222d9-3423-397f-bd44-38030dc6c062",
    "path" : "\/System\/Library\/Frameworks\/Accelerate.framework\/Versions\/A\/Frameworks\/vImage.framework\/Versions\/A\/Libraries\/libCGInterfaces.dylib",
    "name" : "libCGInterfaces.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6746697728,
    "CFBundleShortVersionString" : "8.1",
    "CFBundleIdentifier" : "com.apple.vImage",
    "size" : 4083704,
    "uuid" : "3dd28594-ecd9-3ec6-83bb-f45d7239d44b",
    "path" : "\/System\/Library\/Frameworks\/Accelerate.framework\/Versions\/A\/Frameworks\/vImage.framework\/Versions\/A\/vImage",
    "name" : "vImage"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 7249899520,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.MediaPlayer",
    "size" : 2801664,
    "uuid" : "d7534770-b875-32c6-bbd2-dd07a802c8f1",
    "path" : "\/System\/Library\/Frameworks\/MediaPlayer.framework\/Versions\/A\/MediaPlayer",
    "name" : "MediaPlayer",
    "CFBundleVersion" : "4023.140.2"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6875385856,
    "size" : 5505024,
    "uuid" : "9d952ae1-e049-3444-96e3-0a5756c0b89d",
    "path" : "\/usr\/lib\/swift\/libswiftCore.dylib",
    "name" : "libswiftCore.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6613393408,
    "size" : 290816,
    "uuid" : "8790ba20-19ec-3a36-8975-e34382d9747c",
    "path" : "\/usr\/lib\/system\/libdispatch.dylib",
    "name" : "libdispatch.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6615138304,
    "size" : 53236,
    "uuid" : "e4debb6e-421d-33d0-9e17-77ae0e0fe4dc",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 6613696512,
    "size" : 520180,
    "uuid" : "1b84a7e4-8958-330c-98b8-27d491dff69e",
    "path" : "\/usr\/lib\/system\/libsystem_c.dylib",
    "name" : "libsystem_c.dylib"
  }
],
  "sharedCache" : {
  "base" : 6610747392,
  "size" : 4012523520,
  "uuid" : "7906534c-5d2b-3ba8-b9c6-93a5cf1b7b50"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)\nWritable regions: Total=533.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=533.7M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                          528K       24 \nCoreGraphics                        16K        1 \nCoreServices                        80K        1 \nDispatch continuations            64.0M        1 \nFoundation                         752K        2 \nKernel Alloc Once                   32K        1 \nMALLOC                           443.3M       31 \nMALLOC guard page                  192K       12 \nSTACK GUARD                       56.2M       12 \nStack                             13.8M       12 \nVM_ALLOCATE                         32K        2 \n__AUTH                            1181K      260 \n__AUTH_CONST                      19.8M      447 \n__CTF                               824        1 \n__DATA                            18.5M      520 \n__DATA_CONST                      25.3M      547 \n__DATA_DIRTY                      1194K      152 \n__FONT_DATA                        2352        1 \n__LINKEDIT                       899.1M       98 \n__OBJC_RO                         70.6M        1 \n__OBJC_RW                         2153K        1 \n__TEXT                           450.8M      562 \ndyld private memory                272K        2 \nmapped file                      149.5M       14 \nshared memory                     1360K       13 \n===========                     =======  ======= \nTOTAL                              2.2G     2719 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "name" : "*\/lua script (osc)"
  }
},
  "logWritingSignature" : "999f256037ff017fb64532d1d9c38162d32508a6",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "60186475825c62000ccf5450",
      "factorPackIds" : {

      },
      "deploymentId" : 240000062
    },
    {
      "rolloutId" : "61675b89201f677a9a4cbd65",
      "factorPackIds" : {
        "HEALTH_FEATURE_AVAILABILITY" : "64d14f3e1008ca2fac17a163"
      },
      "deploymentId" : 240000064
    }
  ],
  "experiments" : [
    {
      "treatmentId" : "6dd670af-0633-45e4-ae5f-122ae4df02be",
      "experimentId" : "64406ba83deb637ac8a04419",
      "deploymentId" : 900000017
    },
    {
      "treatmentId" : "a092db1b-c401-44fa-9c54-518b7d69ca61",
      "experimentId" : "64a844035c85000c0f42398a",
      "deploymentId" : 400000019
    }
  ]
}
}

@alphagumibear
Copy link

Sorry I'm not a programmer so I don't know how to interpret the logs, but maybe someone else can help here.

I can just confirm that the command lines in davnozdu's comment were the final crucial steps to get it to work for me in sonoma.

Doesn't work for me. Tried building w/ w/o static Tried w w/o signing 🤷

I tried it last night and got it to work. Where do you get hung up?

Thanks for the reply.

It seems to build fine (build log below)

Build log
But if open the mpv.app, it does nothing. Nothing appears to happen at all. If I first sign it with the workaround mentioned by @davnozdu then I get an error when I try to launch it:

Error Log

@nwparker
Copy link

Good news, doing a brew install lua resolved my issue

@donie
Copy link

donie commented Oct 24, 2023

Earlier builds works just fine, but when I wanted to update today, and ecountered following message. Looks like related to OpenGL, still trying to find out how to resolve this. But just want to put here in case anyone aware of the solution?

subprojects/libplacebo/src/opengl/include/glad/meson.build:11:2: ERROR: Problem encountered: glad (required: >= 2.0, found: none) was not found in PYTHONPATH or `3rdparty`. Please run `git submodule update --init` followed by `meson --wipe`.

@avatar70t
Copy link

building log jianwang@jianwangs-Mac-mini mpv % ./build-mpv_silicon.sh --static + meson setup build Directory already configured.

Just run your build command (e.g. ninja) and Meson will regenerate as necessary.
If ninja fails, run "ninja reconfigure" or "meson setup --reconfigure"
to force Meson to regenerate.

If build failures persist, run "meson setup --wipe" to rebuild from scratch
using the same options as passed when configuring the build.
To change option values, run "meson configure" instead.

  • meson compile -C build
    INFO: autodetecting backend as ninja
    INFO: calculating backend command to run: /opt/homebrew/bin/ninja -C /Users/jianwang/Documents/mpv/build
    ninja: Entering directory `/Users/jianwang/Documents/mpv/build'
    [0/1] Regenerating build files.
    The Meson build system
    Version: 1.2.3
    Source dir: /Users/jianwang/Documents/mpv
    Build dir: /Users/jianwang/Documents/mpv/build
    Build type: native build
    Project name: mpv
    Project version: 0.36.0-UNKNOWN
    C compiler for the host machine: cc (clang 15.0.0 "Apple clang version 15.0.0 (clang-1500.0.40.1)")
    C linker for the host machine: cc ld64 1015.7
    Host machine cpu family: aarch64
    Host machine cpu: aarch64
    Program python3 found: YES (/opt/homebrew/bin/python3)
    Dependency libavcodec found: YES 60.3.100 (cached)
    Dependency libavfilter found: YES 9.3.100 (cached)
    Dependency libavformat found: YES 60.3.100 (cached)
    Dependency libavutil found: YES 58.2.100 (cached)
    Dependency libswresample found: YES 4.10.100 (cached)
    Dependency libswscale found: YES 7.1.100 (cached)
    Dependency libplacebo found: YES 6.338.1 (cached)
    Dependency libass found: YES 0.17.1 (cached)
    Compiler for C supports arguments -Werror=implicit-function-declaration: YES (cached)
    Compiler for C supports arguments -Wempty-body: YES (cached)
    Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
    Compiler for C supports arguments -Wstrict-prototypes: YES (cached)
    Compiler for C supports arguments -Wno-format-zero-length: YES (cached)
    Compiler for C supports arguments -Wno-redundant-decls: YES (cached)
    Compiler for C supports arguments -Wvla: YES (cached)
    Compiler for C supports arguments -Wno-format-truncation: NO (cached)
    Compiler for C supports arguments -Wimplicit-fallthrough: YES (cached)
    Compiler for C supports arguments -fno-math-errno: YES (cached)
    Compiler for C supports arguments -Wformat -Werror=format-security: YES (cached)
    Compiler for C supports link arguments -Wl,-z,noexecstack: NO (cached)
    Compiler for C supports link arguments -Wl,--nxcompat,--no-seh,--dynamicbase: NO (cached)
    Dependency dl found: YES unknown (cached)
    Library atomic found: NO
    Compiler for C supports link arguments -rdynamic: YES (cached)
    Dependency threads found: YES unknown (cached)
    Run-time dependency appleframeworks found: YES (Cocoa, IOKit, QuartzCore)
    Checking for function "ppoll" : NO (cached)
    Library windowsapp skipped: feature uwp disabled
    Checking for function "glob" : YES (cached)
    Header "sys/vt.h" has symbol "VT_GETMODE" : NO (cached)
    Header "sys/consio.h" has symbol "VT_GETMODE" : NO (cached)
    Checking for function "fstatfs" : YES (cached)
    Checking for function "fstatfs" : NO (cached)
    Checking if "vector check" compiles: YES (cached)
    Program /Users/jianwang/Documents/mpv/TOOLS/docutils-wrapper.py found: YES (/Users/jianwang/Documents/mpv/TOOLS/docutils-wrapper.py)
    Program /Users/jianwang/Documents/mpv/TOOLS/file2string.py found: YES (/Users/jianwang/Documents/mpv/TOOLS/file2string.py)
    Program /Users/jianwang/Documents/mpv/TOOLS/matroska.py found: YES (/Users/jianwang/Documents/mpv/TOOLS/matroska.py)
    Dependency libcdio skipped: feature cdda disabled
    Dependency libcdio_paranoia skipped: feature cdda disabled
    Dependency dvdnav skipped: feature dvdnav disabled
    Dependency dvdread skipped: feature dvdnav disabled
    Dependency iconv found: YES unknown (cached)
    Dependency mujs found: YES 1.3.3 (cached)
    Dependency lcms2 found: YES 2.15 (cached)
    Found pkg-config: /opt/homebrew/bin/pkg-config (0.29.2)
    Did not find CMake 'cmake'
    Found CMake: NO
    Run-time dependency libarchive found: NO (tried pkgconfig, framework and cmake)
    Dependency libavdevice found: YES 60.1.100 (cached)
    Dependency libbluray found: YES 1.3.4 (cached)
    Library m found: YES
    Library rt found: NO
    Run-time dependency lua found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency lua52 found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency lua5.2 found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency lua-5.2 found: NO (tried pkgconfig, framework and cmake)
    Dependency luajit found: YES 2.1.1696795921 (cached)
    Dependency rubberband found: YES 3.3.0 (cached)
    Dependency sdl2 skipped: feature sdl2 disabled
    Dependency uchardet found: YES 0.0.8 (cached)
    Dependency vapoursynth found: YES 64 (cached)
    Dependency vapoursynth-script found: YES 64 (cached)
    Dependency zimg found: YES 3.0.5 (cached)
    Dependency zlib found: YES 1.2.12 (cached)
    Run-time dependency alsa found: NO (tried pkgconfig, framework and cmake)
    Dependency appleframeworks (modules: Foundation, AudioToolbox) found: YES unknown (cached)
    Header "AudioToolbox/AudioToolbox.h" has symbol "kAudioUnitSubType_RemoteIO" : NO (cached)
    Run-time dependency appleframeworks found: YES (CoreFoundation, CoreAudio, AudioUnit, AudioToolbox)
    Run-time dependency jack found: NO (tried pkgconfig, framework and cmake)
    Dependency openal skipped: feature openal disabled
    Library OpenSLES found: NO
    Header "sys/soundcard.h" has symbol "SNDCTL_DSP_HALT" : NO (cached)
    Run-time dependency libpipewire-0.3 found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency libpulse found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency sndio found: NO (tried pkgconfig, framework and cmake)
    Header "audioclient.h" has symbol "IAudioClient" : NO (cached)
    Run-time dependency caca found: NO (tried pkgconfig, framework and cmake)
    Has header "d3d9.h" skipped: feature direct3d disabled
    Run-time dependency libdrm found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency gbm found: NO (tried pkgconfig, framework and cmake)
    Dependency libjpeg found: YES 3.0.0 (cached)
    Run-time dependency shaderc found: NO (tried pkgconfig, pkgconfig, pkgconfig and system)
    Run-time dependency libsixel found: NO (tried pkgconfig, framework and cmake)
    Checking for function "shm_open" : YES (cached)
    Run-time dependency spirv-cross-c-shared found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency wayland-client found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency wayland-cursor found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency wayland-protocols found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency xkbcommon found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency wayland-client found: NO (tried pkgconfig, framework and cmake)
    Has header "linux/input-event-codes.h" with dependency wayland-client: NO (cached)
    Program wayland-scanner found: NO
    Dependency x11 found: YES 1.8.7 (cached)
    Run-time dependency xscrnsaver found: NO (tried pkgconfig, framework and cmake)
    Dependency xext found: YES 1.3.5 (cached)
    Run-time dependency xpresent found: NO (tried pkgconfig, framework and cmake)
    Run-time dependency xrandr found: NO (tried pkgconfig, framework and cmake)
    Dependency xv skipped: feature xv disabled
    Dependency appleframeworks (modules: OpenGL) found: YES unknown (cached)
    Library EGL found: NO
    Run-time dependency egl found: NO (tried pkgconfig, framework and cmake)
    Library EGL skipped: feature egl-android disabled
    Run-time dependency wayland-egl found: NO (tried pkgconfig, framework and cmake)
    Dependency /opt/vc/lib/pkgconfig/brcmegl.pc skipped: feature rpi disabled
    Dependency vulkan found: YES 1.3.268 (cached)
    Checking for function "vkCreateDisplayPlaneSurfaceKHR" with dependency vulkan: NO (cached)
    Run-time dependency ffnvcodec found: NO (tried pkgconfig, framework and cmake)
    Header "OpenGLES/ES3/glext.h" has symbol "GL_RGB32F" : NO (cached)
    Dependency /opt/vc/lib/pkgconfig/mmal.pc skipped: feature rpi-mmal disabled
    Run-time dependency libva found: NO (tried pkgconfig, framework and cmake)
    Dependency libva-drm skipped: feature vaapi-drm disabled
    Dependency libva-wayland skipped: feature vaapi-wayland disabled
    Dependency libva-x11 skipped: feature vaapi-x11 disabled
    Dependency vdpau skipped: feature vdpau disabled
    Program /Users/jianwang/Documents/mpv/TOOLS/macos-sdk-version.py found: YES (/Users/jianwang/Documents/mpv/TOOLS/macos-sdk-version.py)
    Message: Detected macOS sdk path: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
    Message: Detected macOS SDK: 14.0

../meson.build:1489: WARNING: add_languages is missing native:, assuming languages are wanted for both host and build.
Objective-C compiler for the host machine: cc (clang 15.0.0)
Objective-C linker for the host machine: cc ld64 1015.7
Program xcrun found: YES (/usr/bin/xcrun)
Program /Library/Developer/CommandLineTools/usr/bin/swift found: YES (/Library/Developer/CommandLineTools/usr/bin/swift)
Message: Detected Swift version: 5.9
Program /Users/jianwang/Documents/mpv/TOOLS/macos-swift-lib-directory.py found: YES (/Users/jianwang/Documents/mpv/TOOLS/macos-swift-lib-directory.py)
Message: Detected Swift library directory: /Library/Developer/CommandLineTools/usr/lib/swift/macosx
Has header "AppKit/NSTouchBar.h" : YES (cached)
Program rst2man found: YES (/opt/homebrew/bin/rst2man)
Program rst2html rst2html.py skipped: feature html-build disabled
Program rst2pdf skipped: feature pdf-build disabled
Configuring config.h using configuration
Message: List of enabled features: av-channel-layout avif-muxer bsd-fstatfs build-date cocoa coreaudio cplugins darwin debug ffmpeg gl gl-cocoa glob glob-posix gpl iconv javascript jpeg jpegxl lavu-uuid lcms2 libass libavdevice libbluray libdl libm libplacebo luajit macos-cocoa-cb macos-media-player macos-touchbar manpage-build osx-thread-name posix posix-shm rubberband rubberband-3 swift threads uchardet vapoursynth vector videotoolbox-gl vulkan zimg zimg-st428 zlib
Fetching value of define "MPV_CLIENT_API_VERSION" : (((2) << 16) | (2) | 0UL) (cached)
Compiler for C supports link arguments -Wl,-Bsymbolic: NO (cached)
Build targets in project: 24

mpv 0.36.0-UNKNOWN

d3d11     : NO
javascript: YES
libmpv    : NO
lua       : YES
opengl    : YES
vulkan    : YES
wayland   : NO
x11       : NO

Found ninja-1.11.1 at /opt/homebrew/bin/ninja
Cleaning... 0 files.
[2/40] Compiling C object libmpv.2.dylib.p/video_out_gpu_next_context.c.o
FAILED: libmpv.2.dylib.p/video_out_gpu_next_context.c.o
cc -Ilibmpv.2.dylib.p -I. -I.. -Icommon -Ietc -Iplayer/javascript -Iplayer/lua -Isub -ITOOLS/osxbundle -Iosdep -I/opt/homebrew/Cellar/libass/0.17.1/include -I/opt/homebrew/Cellar/libunibreak/5.1/include -I/opt/homebrew/Cellar/harfbuzz/8.2.2/include/harfbuzz -I/opt/homebrew/Cellar/glib/2.78.0/include/glib-2.0 -I/opt/homebrew/Cellar/glib/2.78.0/lib/glib-2.0/include -I/opt/homebrew/opt/gettext/include -I/opt/homebrew/Cellar/pcre2/10.42/include -I/opt/homebrew/Cellar/graphite2/1.3.14/include -I/opt/homebrew/Cellar/fribidi/1.0.13/include/fribidi -I/opt/homebrew/opt/freetype/include/freetype2 -I/opt/homebrew/opt/libpng/include/libpng16 -I/opt/homebrew/Cellar/ffmpeg/6.0_1/include -I/opt/homebrew/Cellar/libplacebo/6.338.1/include -I/opt/homebrew/Cellar/mujs/1.3.3/include -I/opt/homebrew/Cellar/little-cms2/2.15/include -I/opt/homebrew/Cellar/libbluray/1.3.4/include -I/opt/homebrew/Cellar/fontconfig/2.14.2/include -I/opt/homebrew/Cellar/luajit/2.1.1696795921/include/luajit-2.1 -I/opt/homebrew/Cellar/rubberband/3.3.0/include -I/opt/homebrew/Cellar/libsamplerate/0.2.2/include -I/opt/homebrew/Cellar/uchardet/0.0.8/include/uchardet -I/opt/homebrew/Cellar/vapoursynth/64/include/vapoursynth -I/opt/homebrew/Cellar/zimg/3.0.5/include -I/opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11/include/python3.11 -I/opt/homebrew/Cellar/jpeg-turbo/3.0.0/include -I/opt/homebrew/Cellar/vulkan-loader/1.3.268/include -fvisibility=hidden -fcolor-diagnostics -Wall -Winvalid-pch -std=c11 -O2 -g -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -Werror=implicit-function-declaration -Wempty-body -Wdisabled-optimization -Wstrict-prototypes -Wno-format-zero-length -Wno-redundant-decls -Wvla -Wimplicit-fallthrough -fno-math-errno -Wformat -Werror=format-security -Wno-logical-op-parentheses -Wno-switch -Wno-tautological-compare -Wno-pointer-sign -Wno-tautological-constant-out-of-range-compare -MD -MQ libmpv.2.dylib.p/video_out_gpu_next_context.c.o -MF libmpv.2.dylib.p/video_out_gpu_next_context.c.o.d -o libmpv.2.dylib.p/video_out_gpu_next_context.c.o -c ../video/out/gpu_next/context.c
In file included from ../video/out/gpu_next/context.c:50:
In file included from ../video/out/vulkan/context.h:4:
In file included from ../video/out/vulkan/common.h:30:
/opt/homebrew/Cellar/libplacebo/6.338.1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found
#include <vulkan/vulkan.h>
^~~~~~~~~~~~~~~~~
1 error generated.
[9/40] Compiling Objective-C object li...ylib.p/video_out_cocoa_events_view.m.o
../video/out/cocoa/events_view.m:42:41: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
[self registerForDraggedTypes:@[NSFilenamesPboardType,
^
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
^
../video/out/cocoa/events_view.m:43:41: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
NSURLPboardType]];
^~~~~~~~~~~~~~~
NSPasteboardTypeURL
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14));
^
../video/out/cocoa/events_view.m:308:31: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
if ([types containsObject:NSFilenamesPboardType] ||
^
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
^
../video/out/cocoa/events_view.m:309:31: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
[types containsObject:NSURLPboardType]) {
^~~~~~~~~~~~~~~
NSPasteboardTypeURL
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14));
^
../video/out/cocoa/events_view.m:319:40: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
if ([[pboard types] containsObject:NSFilenamesPboardType]) {
^
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
^
../video/out/cocoa/events_view.m:320:56: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
NSArray *pbitems = [pboard propertyListForType:NSFilenamesPboardType];
^
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14));
^
../video/out/cocoa/events_view.m:323:47: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
} else if ([[pboard types] containsObject:NSURLPboardType]) {
^~~~~~~~~~~~~~~
NSPasteboardTypeURL
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14));
^
7 warnings generated.
[11/40] Generating manpages with a custom command
ninja: build stopped: subcommand failed.

I'm successed build on sonoma 14.0 , but failed on sonoma 14.1

@sandlst
Copy link

sandlst commented Oct 26, 2023

building log
I'm successed build on sonoma 14.0 , but failed on sonoma 14.1

I'm having this too; related bug:
mpv-player/mpv#12673

This build guide works and uses non-homebrew versions of a lot of deps; it makes me wonder if there is a bug in one of the homebrew Vulkan packages or possibly pkgconf.

@LampPrinter
Copy link

LampPrinter commented Oct 26, 2023

Getting this on Sonoma 14.1
M1 MacBook

Run-time dependency libplacebo found: NO (tried pkgconfig and framework) meson.build:26:13: ERROR: Dependency "libplacebo" not found, tried pkgconfig and framework

After installing libplacebo from homebrew getting this
/opt/homebrew/Cellar/libplacebo/6.338.1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found

@Akczht
Copy link

Akczht commented Oct 28, 2023

has anybody managed to get a working mpv.app with dependencies on sonoma 14.1, I haven't been able to do so, but unpacked binaries work fine.

@mcp73
Copy link

mcp73 commented Oct 31, 2023

After installing libplacebo from homebrew getting this
/opt/homebrew/Cellar/libplacebo/6.338.1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found

I'm seeing the exact same error on Ventura 13.6.1

@guyman624
Copy link

guyman624 commented Oct 31, 2023

After installing libplacebo from homebrew getting this /opt/homebrew/Cellar/libplacebo/6.338.1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found

same issue, Sonoma 14.1, M1 Mac, Xcode 15, 15.0.1, 15.1 beta

Edit:
Installing this fixed it : https://vulkan.lunarg.com/sdk/home#mac

@LampPrinter
Copy link

LampPrinter commented Nov 1, 2023

After installing libplacebo from homebrew getting this /opt/homebrew/Cellar/libplacebo/6.338.1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found

same issue, Sonoma 14.1, M1 Mac, Xcode 15, 15.0.1, 15.1 beta

Edit: Installing this fixed it : https://vulkan.lunarg.com/sdk/home#mac

Explain a bit.
Just installing this file "vulkansdk-macos-1.3.268.1.dmg"?

Edit - Yeah, selecting all the components during install did the trick.

@donie
Copy link

donie commented Nov 1, 2023

After installing libplacebo from homebrew getting this /opt/homebrew/Cellar/libplacebo/6.338.1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found

same issue, Sonoma 14.1, M1 Mac, Xcode 15, 15.0.1, 15.1 beta

Edit: Installing this fixed it : https://vulkan.lunarg.com/sdk/home#mac

Thanks for this, I followed with installer with the dmg file, basically selected all components, and now it's working.

@spikeh
Copy link

spikeh commented Nov 7, 2023

For Sonoma work solution

rm build/mpv.app/Contents/MacOS/mpv-bundle
mv build/mpv.app/Contents/MacOS/mpv build/mpv.app/Contents/MacOS/mpv-bundle
ln -s mpv-bundle build/mpv.app/Contents/MacOS/mpv
codesign --force --deep -s - build/mpv.app

Thanks, this worked for me.

@nickeltingupta
Copy link

For Sonoma work solution

rm build/mpv.app/Contents/MacOS/mpv-bundle
mv build/mpv.app/Contents/MacOS/mpv build/mpv.app/Contents/MacOS/mpv-bundle
ln -s mpv-bundle build/mpv.app/Contents/MacOS/mpv
codesign --force --deep -s - build/mpv.app

This worked for me on Sonoma. I was having "flashing screen" issue and this fixed it, thanks a lot!

@dbrookman
Copy link
Author

This just got merged, so you shouldn't have to fiddle with mpv-bundle or do any code-signing on your own any longer.

Also, if you don't have libplacebo installed, you'll need to run brew install libplacebo. I've updated the instructions accordingly.

@sandlst
Copy link

sandlst commented Nov 18, 2023

building log
I'm successed build on sonoma 14.0 , but failed on sonoma 14.1

I'm having this too; related bug: mpv-player/mpv#12673

This build guide works and uses non-homebrew versions of a lot of deps; it makes me wonder if there is a bug in one of the homebrew Vulkan packages or possibly pkgconf.

In case anyone else is having the same issue:
/opt/homebrew/Cellar/libplacebo/6.338.1_1/include/libplacebo/vulkan.h:21:10: fatal error: 'vulkan/vulkan.h' file not found
when trying to build; I think messing around with the Vulkan-SDK installer and then trying to go back to homebrew's vulkan/libplacebo was the cause of it for me. After completely removing the vulkan-sdk and forcing brew to reinstall libplacebo, vulkan-headers, and vulkan-loader I was able to build mpv again. Even after removing the SDK it was still giving me that error until I force reinstalled those homebrew packages....I reinstalled all of them at once so I'm not sure which one(s) were responsible.

@Akczht
Copy link

Akczht commented Nov 18, 2023

I recently was able to build a standalone mpv app, without any errors after the latest commit bringing support hw decoding of libplacebo with videotoolbox, all I did was install molten-vk and libplacebo I got no errors.

@PsyPryss
Copy link

/!\ WARNING : can't get path for '@rpath/libspirv-cross-c-shared.0.dylib'
What other dependencies am I missing. I'm trying to compile a static build.

@temberature
Copy link

The Absolute Beginner's Guide to Installing and Using Meson
https://mesonbuild.com/SimpleStart.html

@miku1958
Copy link

FYI, If you want to enable gpu-next, you have to install the Vulkan SDK https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg

@ElhemEnohpi
Copy link

ElhemEnohpi commented Mar 20, 2024

@miku1958 Yes, it's nice having gpu-next, now I can watch Dolby Vision videos with mpv!

But you don't have to install the whole Vulkan SDK, which is relatively large. You only need the MoltenVK runtime. As noted in the third comment above yours, it can be installed easily from Homebrew. Just do:

brew install molten-vk

Maybe it can be added to the script...

@miku1958
Copy link

@ElhemEnohpi Got it thanks

@tano70
Copy link

tano70 commented Apr 10, 2024

no work today in my MacbookPro M3 when i ran "brew upgrade" and installed mpv 0.37.0.2 from 0.37.0.1 and ffmpeg 7.0 from 6.1.1.7
any solution?

@ttforsd
Copy link

ttforsd commented Apr 15, 2024

no work today in my MacbookPro M3 when i ran "brew upgrade" and installed mpv 0.37.0.2 from 0.37.0.1 and ffmpeg 7.0 from 6.1.1.7 any solution?

Same issue on m1 air

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment