Package Details: makemkv 1.17.8-1

Git Clone URL: https://aur.archlinux.org/makemkv.git (read-only, click to copy)
Package Base: makemkv
Description: DVD and Blu-ray to MKV converter
Upstream URL: https://www.makemkv.com
Licenses: LGPL-2.1-or-later, LicenseRef-GuinpinSoft-inc-EULA
Submitter: hydro
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 325
Popularity: 2.38
First Submitted: 2010-01-26 15:31 (UTC)
Last Updated: 2024-09-30 16:08 (UTC)

Dependencies (4)

Sources (4)

Pinned Comments

FabioLolix commented on 2024-07-20 16:33 (UTC)

This now depends on libavcodec.so so when it needs to be rebuilded against new ffmpeg version you are forced to uninstall first otherwise the update will be blocked

fosskers commented on 2023-06-11 13:56 (UTC)

I can confirm that a manual sudo modprobe sg was necessary to get makepkg to detect my DVD drive.

FabioLolix commented on 2023-03-16 21:41 (UTC)

Beta key:

Latest Comments

« First ‹ Previous 1 .. 9 10 11 12 13 14 15 16 17 18 19 .. 27 Next › Last »

0003c9fe commented on 2018-12-27 04:12 (UTC)

@Marcel_K I don't recall seeing that anywhere. And you say that starting from 1.10.8, but would I not have already been past that version when I used the program and it worked just fine a month ago before the 1.14.2 update?

Also my device is a /dev/srX, not a /dev/sgX. Is the process similar?

Marcel_K commented on 2018-12-26 12:26 (UTC)

Did you read this after installation?

Starting from 1.10.8 the /dev/sgX device that corresponds to the drive is required. You may have to load the sg kernel module in order to create the device. To enable module autoloading run the following command as root and reboot:

echo sg > /etc/modules-load.d/sg.conf

0003c9fe commented on 2018-12-26 02:34 (UTC)

Anyone else having issues where it won't detect the optical drive? It worked just fine a month ago (which would have been before the latest update) but now it no longer works, and I've had to downgrade to an earlier version.

hydro commented on 2018-10-24 21:08 (UTC)

https://www.makemkv.com/forum/viewtopic.php?f=5&t=1053

hydro commented on 2018-05-16 05:23 (UTC)

Added patch from gentoo ebuild.

Marcel_K commented on 2018-05-15 23:48 (UTC)

I stand corrected, indeed: the package owner should patch the sources in prepare() and push a new release.

javmorin commented on 2018-05-15 22:27 (UTC) (edited on 2018-05-15 22:29 (UTC) by javmorin)

I added the following prepare() section. Not sure if the CAP_DELAY matters, but it was changed in other ffmpeg 4.x updates, so I assumed it does.

prepare() {
  cd "${srcdir}/${pkgname}-oss-${pkgver}"
  # ffmpeg 4.0 tweaks
  sed -ri 's|CODEC_CAP_DELAY|AV_CODEC_CAP_DELAY|' libffabi/src/ffabi.c
  sed -ri 's|([ &])CODEC_FLAG_GLOBAL_HEADER|\1AV_CODEC_FLAG_GLOBAL_HEADER|' libffabi/src/ffabi.c
}

evana commented on 2018-05-14 05:36 (UTC)

@nbisby sed also needs -r otherwise the regex doesn't work as written.

nbisby commented on 2018-05-13 23:50 (UTC)

I added the line: sed -e "s/([ &])CODEC_FLAG_GLOBAL_HEADER/\1AV_CODEC_FLAG_GLOBAL_HEADER/" libffabi/src/ffabi.c -i

to the build() section of the PKGBUILD (after the cd, but before the ./configure). It built and launched after that.

mosh5382 commented on 2018-05-13 23:43 (UTC)

This took a bit of doing.

I ran this: wget http://www.makemkv.com/download/makemkv-oss-1.12.2.tar.gz

Then added the "AV_" in the spots pointed out by the complication failure in this file: libffabi/src/ffabi.c

I then repackaged the makemkv-oss-1.12.2.tar.gz

Finally I changed the md5sum in the pkgbuild for the "makemkv-oss-1.12.2.tar.gz" file.

I was then able to makepkg -s and the pkgbuild worked correctly. After installing the pkgbuild makemkv will now run correctly.