# libmpv-darwin-build **Repository Path**: ekber/libmpv-darwin-build ## Basic Information - **Project Name**: libmpv-darwin-build - **Description**: ssssasdasdasdadasd - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: alexmercerind-patch-1 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-28 - **Last Updated**: 2023-08-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # libmpv build Provides builds of [libmpv](https://github.com/mpv-player/mpv) for macOS & iOS, used by [media_kit](https://github.com/alexmercerind/media_kit), compatible with commercial use. Heavily inspired by [Homebrew](https://github.com/Homebrew/brew) and [IINA](https://github.com/iina/iina). ## Usage ```shell $ brew install cmake golang meson ninja $ VERSION=v0.0.1 make $ ls build/output libmpv-libs_v0.0.1_ios-arm64-audio-default.tar.gz libmpv-libs_v0.0.1_ios-arm64-audio-full.tar.gz libmpv-libs_v0.0.1_ios-arm64-video-default.tar.gz libmpv-libs_v0.0.1_ios-arm64-video-full.tar.gz libmpv-libs_v0.0.1_iossimulator-universal-audio-default.tar.gz libmpv-libs_v0.0.1_iossimulator-universal-audio-full.tar.gz libmpv-libs_v0.0.1_iossimulator-universal-video-default.tar.gz libmpv-libs_v0.0.1_iossimulator-universal-video-full.tar.gz libmpv-libs_v0.0.1_macos-universal-audio-default.tar.gz libmpv-libs_v0.0.1_macos-universal-audio-full.tar.gz libmpv-libs_v0.0.1_macos-universal-video-default.tar.gz libmpv-libs_v0.0.1_macos-universal-video-full.tar.gz libmpv-xcframeworks_v0.0.1_ios-universal-audio-default.tar.gz libmpv-xcframeworks_v0.0.1_ios-universal-audio-full.tar.gz libmpv-xcframeworks_v0.0.1_ios-universal-video-default.tar.gz libmpv-xcframeworks_v0.0.1_ios-universal-video-full.tar.gz libmpv-xcframeworks_v0.0.1_macos-universal-audio-default.tar.gz libmpv-xcframeworks_v0.0.1_macos-universal-audio-full.tar.gz libmpv-xcframeworks_v0.0.1_macos-universal-video-default.tar.gz libmpv-xcframeworks_v0.0.1_macos-universal-video-full.tar.gz ``` ## Naming convention ``` libmpv-__---.tar.gz ``` | Component | Notes | Value | | ----------- | ------------------------------- | ------------------------ | | **format** | Output format of built files | libs, xcframeworks | | **version** | Semantic version | v0.0.1, … | | **os** | Operating system | ios, iossimulator, macos | | **arch** | Architecture | arm64, amd64, universal | | **variant** | Usage context | audio, video | | **flavor** | Number of available decoders, … | default, full | ## Minimum versions
Platform Arch Min Version Notes
macOS amd64 10.9 Required by uchardet
arm64
iOS arm64 9.0 Required by ffmpeg
iOS Simulator amd64 9.0 Required by ffmpeg
arm64 12.0 Required by xcodebuild -create-xcframework
## Dependencies ```mermaid flowchart LR A(mpv) --> B(ffmpeg) A(mpv) -.-> C(libass) A(mpv) -.-> D(uchardet) B -.-> H(libressl) B -.-> I(libxml2) C --> E(freetype) C --> F(harfbuzz) C --> G(fribidi) E -.-> F ``` - [**ffmpeg**](https://ffmpeg.org): A cross-platform solution for converting, streaming, and recording audio and video, with support for a wide range of codecs and formats - **[libass](https://github.com/libass/libass)(optional)**: A library for rendering subtitles in videos, with support for advanced text formatting and positioning features (made optional with a patch) - [**fribidi**](https://github.com/fribidi/fribidi): A library for handling bidirectional text (such as Arabic or Hebrew) in Unicode strings, with support for complex shaping and layout - [**freetype**](https://sourceforge.net/projects/freetype/): A library for rendering high-quality text in graphics applications, with support for a wide range of font formats and glyph rendering techniques - [**harfbuzz**](https://github.com/harfbuzz/harfbuzz): A library for shaping and laying out text in multiple languages and scripts, with support for advanced typography features such as ligatures and kerning - **[libressl](https://www.libressl.org/) (optional)**: A fork of OpenSSL that aims to provide a more secure and auditable implementation of the SSL/TLS protocols - **[libxml2](http://xmlsoft.org/) (optional)**: A library for processing XML data, used by ffmpeg to support the Dash protocol - **[uchardet](https://www.freedesktop.org/wiki/Software/uchardet/) (optional)**: A C++ port of the Universal Character Encoding Detector (used by Mozilla Firefox and Thunderbird) for detecting the encoding of input text ## Commercial use | Dependency | Licence | Commercial use | | ---------- | ------------------------------------------------------ | :------------: | | mpv | LGPL-2.1 (`-Dgpl=false`) | ✅ | | ffmpeg | LGPL-2.1 (`--enable-gpl` & `--enable-nonfree` omitted) | ✅ | | libass | ISC | ✅ | | freetype | FreeType | ✅ | | harfbuzz | MIT | ✅ | | fribidi | LGPL-2.1 | ✅ | | libressl | Apache-1.0, BSD-4-Clause, ISC, public domain | ✅ | | uchardet | MPL-1.1, GPL-2, LGPL-2.1 | ✅ | | libxml2 | MIT | ✅ | ## Notes - Some dependencies, which are not needed at the moment, may be added in the future: - [**libbluray**](https://code.videolan.org/videolan/libbluray): A library for reading and parsing Blu-ray discs, with support for advanced features such as BD-J menus and seamless branching - [**libarchive**](https://github.com/libarchive/libarchive): A library for reading various archive formats, including tar and zip, with support for compression and metadata, and a flexible API for reading and extracting archive contents - We use `meson` as much as possible in order to simplify cross-compilation, at the cost of some heaviness regarding legacy packages - If the build freezes, reboot macOS - Command to visualize the workflow of a Makefile: ``` $ make -Bnd | make2graph | dot -Grankdir=LR -Tpng -o graph.png ``` ## Project layout ``` . ├── ... ├── cmd # golang scripts ├── pkg # golang packages ├── downloads.lock # lock file of dependencies archives ├── Makefile # main build script ├── scripts # build scripts ├── cross-files # cross build files used by meson ├── build │ ├── intermediate # intermediate build artifacts │ │ ├── tool-versions.lock # versions of tools used during build │ │ ├── downloads # dependencies archives files │ │ ├── links # symbolic links to host binaries │ │ ├── _-- │ │ └── ... │ ├── tmp │ │ ├── _-- │ │ └── ... │ └── output │ ├── debug.zip # zip containing locks and logs │ ├── libmpv-__--.tar.gz │ └── ... └── ... ``` ## How the libass optional patch was created As the dependency of mpv on libass is deeply embedded in the code, the simplest solution was to: 1. Remove the dynamic linking in `meson.build`. 2. Include the `ass/ass.h` and `ass/ass_types.h` headers directly in the code 3. Remove the call to `ass_library_version` in `player/command.c` 4. Remove the calls to `ass_library_init`, called by `mp_ass_init`, in `sub/osd_libass.c` and `sub/sd_ass.c` ## Resources - https://github.com/stps/mpv-ios-scripts - https://github.com/iina/homebrew-mpv-iina - https://github.com/mpv-android/mpv-android - https://github.com/jnozsc/mpv-nightly-build - https://github.com/smplayer-dev/mpv - https://github.com/smplayer-dev/smplayer - https://github.com/ldwardx/mpv-build-mac-iOS - https://github.com/birros/godot_tl/tree/ca2fc4151bd8141241151dd6e29768608600473a/toolchains - https://github.com/Vargol/ffmpeg-apple-arm64-build