Package Details: mingw-w64-ffmpeg 1:7.1-1

Git Clone URL: https://aur.archlinux.org/mingw-w64-ffmpeg.git (read-only, click to copy)
Package Base: mingw-w64-ffmpeg
Description: Complete solution to record, convert and stream audio and video (mingw-w64)
Upstream URL: https://ffmpeg.org
Licenses: GPL-3.0-only
Submitter: kfg
Maintainer: kfg
Last Packager: kfg
Votes: 7
Popularity: 0.000000
First Submitted: 2013-06-19 17:10 (UTC)
Last Updated: 2024-11-26 20:30 (UTC)

Latest Comments

1 2 3 4 Next › Last »

Martchus commented on 2024-12-23 14:42 (UTC)

I'm currently running into the following error:

==> Starting build()...
ERROR: spirv_compiler not found

If you think configure made a mistake, make sure you are using the latest
version from Git.  If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.libera.chat.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.
==> ERROR: A failure occurred in build().

Adding spirv-tools to makedepends didn't help. For now I disabled libglslang on my builds.

patlefort commented on 2024-11-29 23:08 (UTC)

I sent a patch to mingw-w64-rav1e that solve the last issue.

patlefort commented on 2024-11-07 02:55 (UTC)

Problem with rav1e:

ERROR: rav1e >= 0.5.0 not found using pkg-config. It is installed and I compile in clean containers.

kfg commented on 2024-08-27 15:21 (UTC)

@Martchus sorry for forgetting to add the CFLAGS. Will add that in the next update.

Martchus commented on 2024-08-13 20:57 (UTC)

Can you add the CFLAGS mentioned in my previous comment?

Martchus commented on 2024-07-09 19:41 (UTC)

This package fails when compiling with GCC 14:

src/fftools/ffplay_renderer.c: In function ‘destroy’:
src/fftools/ffplay_renderer.c:768:25: error: assignment to ‘VkSurfaceKHR’ {aka ‘long long unsigned int’} from ‘void *’ makes integer from pointer without a cast [-Wint-conversion]
  768 |         ctx->vk_surface = NULL;
      |                         ^
make: *** [/build/mingw-w64-ffmpeg/src/ffmpeg/ffbuild/common.mak:81: fftools/ffplay_renderer.o] Error 1

You can add:

    # avoid error about `ctx->vk_surface = NULL;` with GCC 14
    export CFLAGS="$CFLAGS -Wno-error=int-conversion"

to the build() function to workaround this.

Martchus commented on 2024-07-06 20:50 (UTC)

Looks like .SRCINFO is out of sync with the PKGBUILD.

Martchus commented on 2023-12-28 17:57 (UTC)

But it looks like the regular ffmpeg package still depends on speex. And will ffmpeg still support speex without that dependency? Even if speex is superseded it makes sense to retain the support for it.

MarsSeed commented on 2023-12-28 17:22 (UTC)

Speex (mingw-w64-speex) is obsolete: should not be used.

Superseded by Opus (mingw-w64-opus), which is already a dependency.

Martchus commented on 2021-05-17 13:14 (UTC)

Thanks for adding the missing package and keeping this on-par with the regular ffmpeg package!