Package Details: mpv-full-git 0.39.0.r871.g131973806d-1

Git Clone URL: https://aur.archlinux.org/mpv-full-git.git (read-only, click to copy)
Package Base: mpv-full-git
Description: A free, open source, and cross-platform media player (git version with all possible libs)
Upstream URL: https://mpv.io/
Keywords: hwaccel mpv player video
Licenses: GPL-2.0-or-later
Conflicts: mpv
Provides: mpv, mpv-git
Submitter: dbermond
Maintainer: dbermond
Last Packager: dbermond
Votes: 24
Popularity: 0.62
First Submitted: 2016-12-10 19:51 (UTC)
Last Updated: 2025-02-21 16:31 (UTC)

Required by (407)

Sources (1)

Latest Comments

1 2 3 4 5 6 7 Next › Last »

dbermond commented on 2025-02-21 16:31 (UTC)

@tetsuhi package updated to match the latest upstream changes, thanks for reporting.

@bbaster it's not. And it's building fine with sdl2.

tetsuhi commented on 2025-02-19 06:09 (UTC)

The ta-leak-report build option has been removed https://github.com/mpv-player/mpv/commit/f8577d1c9b98419f4cb6050a442b6b17d443caf2

Causing a build failure with the current PKGBUILD

mpv/meson.build:1:0: ERROR: Unknown options: "ta-leak-report"

bbaster commented on 2025-02-12 15:51 (UTC)

sdl3 seems to be a new dependency:

[337/338] Generating mpv_protocols with a custom command (wrapped by meson to capture output)
FAILED: mpv_protocols 
/usr/bin/meson --internal exe --capture mpv_protocols -- /home/user/.cache/yay/mpv-full-git/src/build/mpv --no-config --list-protocols
--- stderr ---
Failed loading SDL3 library.

dbermond commented on 2025-01-25 11:56 (UTC)

@Korialo fixed. Thanks for reporting.

Korialo commented on 2025-01-20 12:54 (UTC)

There's a missing dependency libdisplay-info:

mpv/meson.build:951:18: ERROR: Dependency "libdisplay-info" not found, tried pkgconfig

dbermond commented on 2024-09-19 15:09 (UTC)

@tlalexan package updated to match the latest upstream changes. Thanks for reporting.

tlalexan commented on 2024-09-14 22:14 (UTC) (edited on 2024-09-14 22:20 (UTC) by tlalexan)

I needed to remove the line

        -Dvulkan-interop='enabled' \

from PKGBUILD

I'm pretty sure the issue was this upstream change: https://github.com/mpv-player/mpv/commit/0e43eea5bb9d3864329ad58f06377c4bb029d5d3#diff-76ea9078099f2ee8cc0e760a874dd153f225ba16ad10375c24ab6cd53518f3c4L106

otherwise I was seeing this error:

+ exec meson setup (...snip...)
The Meson build system
Version: 1.5.1
Source dir: /home/tom/.cache/yay/mpv-full-git/src/mpv
Build dir: /home/tom/.cache/yay/mpv-full-git/src/build
Build type: native build

mpv/meson.build:1:0: ERROR: Unknown options: "vulkan-interop"

A full log can be found at /home/tom/.cache/yay/mpv-full-git/src/build/meson-logs/meson-log.txt
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: mpv-full-git-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
mpv-full-git - exit status 4

spacemann commented on 2024-06-20 22:24 (UTC)

As Tjuh said, this now requires turning off two new macos related features. Here's a patch for the PKGBUILD file that fixes the build:

diff --git a/PKGBUILD b/PKGBUILD
index 4364f99..d367fd2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Daniel Bermond <dbermond@archlinux.org>

 pkgname=mpv-full-git
-pkgver=0.38.0.r341.gf652f38147
+pkgver=0.38.0.r512.gbab9b2cf4e
 pkgrel=1
 pkgdesc='A free, open source, and cross-platform media player (git version with all possible libs)'
 arch=('x86_64')
@@ -138,6 +138,8 @@ build() {
         \
         -Dmacos-11-features='disabled' \
         -Dmacos-12-features='disabled' \
+        -Dmacos-10-15-4-features='disabled' \
+        -Dmacos-11-3-features='disabled' \
         -Dmacos-cocoa-cb='disabled' \
         -Dmacos-media-player='disabled' \
         -Dmacos-touchbar='disabled' \

Tjuh commented on 2024-06-20 15:49 (UTC)

    -Dmacos-10-15-4-features=disabled \
    -Dmacos-11-3-features=disabled \

Had to add this.

dbermond commented on 2024-05-24 16:55 (UTC)

@Ultimatespirit package updated. Thanks for reporting.