Package Details: davinci-resolve-studio 19.1.4-1

Git Clone URL: https://aur.archlinux.org/davinci-resolve-studio.git (read-only, click to copy)
Package Base: davinci-resolve-studio
Description: Professional A/V post-production software suite from Blackmagic Design. Studio edition, requires license key or license dongle.
Upstream URL: https://www.blackmagicdesign.com/support/family/davinci-resolve-and-fusion
Keywords: blackmagic davinci editor resolve studio video
Licenses: LicenseRef-Commercial
Conflicts: davinci-resolve, davinci-resolve-beta, davinci-resolve-studio-beta
Submitter: codibit
Maintainer: Muflone
Last Packager: Muflone
Votes: 45
Popularity: 2.42
First Submitted: 2018-01-21 18:37 (UTC)
Last Updated: 2025-03-22 16:28 (UTC)

Dependencies (25)

Required by (1)

Sources (1)

Pinned Comments

Muflone commented on 2025-01-26 02:15 (UTC)

IMPORTANT!

Since version 19.1.3-2 this package will not download automatically the source file from the upstream site.

To build this package you will need to manually download the file from https://www.blackmagicdesign.com/support/family/davinci-resolve-and-fusion and place it in the same directory with the PKGBUILD.

This would reduce the mess in this package, making it more readable and clear. Also bypassing the required information from the upstream URL is not allowed in an automated way.

Latest Comments

1 2 3 4 5 6 .. 26 Next › Last »

Muflone commented on 2025-04-07 07:52 (UTC) (edited on 2025-04-07 07:53 (UTC) by Muflone)

@Blu3Wolf the download URL is dinamically obtained when you file the required fields or when you click the download only link.

https://bbs.archlinux.org/viewtopic.php?id=304425

About the mess your position is simply wrong: there's no way ZERO lines are more mess than 40+ lines of black magic the previous package had

https://aur.archlinux.org/cgit/aur.git/commit/?h=davinci-resolve-studio&id=1ab35f18a82be5134a415de24b28a3fd3b3c05a7

Blu3wolf commented on 2025-04-06 23:54 (UTC)

Also bypassing the required information from the upstream URL is not allowed in an automated way.

Is this your rule? I ask, as I do not see this anywhere in the linked Privacy Policy at the download source. You realise of course that you can simply click "download only" - there is no required information at the upstream URL?

By removing the normal source information from the PKGBUILD, you appear to have increased the mess in this package, rather than reducing it.

Wernight commented on 2025-03-21 19:37 (UTC) (edited on 2025-03-21 19:37 (UTC) by Wernight)

For 19.1.4 (and in general for minor updates), using paru:

  1. Download the latest zip to ~/.cache/paru/clone/davinci-resolve-studio (or run the command at step 3 to know the directory)
  2. $ sha256sum LATEST_RESOLVE_ZIP_FILE.ZIP # (note the result)
  3. $ paru --fm vim -S davinci-resolve-studio # (change the version number and sha256)

nsprd commented on 2025-02-28 18:41 (UTC) (edited on 2025-03-24 11:09 (UTC) by nsprd)

I noticed that I had to create a .license directory in /opt/resolve with rw permissions for the running user (or just 755 it) or else I could not activate DR.

diff --git a/PKGBUILD b/PKGBUILD
index 9401a7c..f1d3142 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -127,6 +127,10 @@ package() {
   install -D -m 0644 -t "${pkgdir}/usr/share/icons/hicolor/64x64/apps" "graphics/DV_Resolve.png" "graphics/DV_ResolveProj.png"
   install -D -m 0644 -t "${pkgdir}/usr/share/mime/packages" "share/resolve.xml"
   install -D -m 0644 -t "${pkgdir}/usr/lib/udev/rules.d" "share/etc/udev/rules.d"/{99-BlackmagicDevices.rules,99-ResolveKeyboardHID.rules,99-DavinciPanel.rules}
+  
+  # Create .license directory with read/write permissions for all users
+  install -d -m 0755 "${pkgdir}/opt/${_pkgname}/.license"
+
   popd
 }

Bink commented on 2025-02-27 02:42 (UTC) (edited on 2025-02-27 02:43 (UTC) by Bink)

@ahmadkakarr, is your audio a compatible format? (see Wiki)

ahmadkakarr commented on 2025-02-26 15:57 (UTC)

audio still not working? how to fix it please???

Rubble1278 commented on 2025-02-21 22:47 (UTC) (edited on 2025-02-21 22:57 (UTC) by Rubble1278)

Anyone know if /opt/resolve/.license/ was moved? Just did a fresh install and I'm unable to find the directory.

EDIT: I was able to solve the problem by creating the directory myself

ratijas commented on 2025-02-15 12:03 (UTC)

There seems to be another missing piece:

❯ ll -l /opt/resolve/bin/BlackmagicRawAPI lrwxrwxrwx 1 root root 50 Feb 6 13:41 /opt/resolve/bin/BlackmagicRawAPI -> squashfs-root/BlackmagicRAWPlayer/BlackmagicRawAPI

Note that "squashfs-root" in the path indicates it is a link to a file within an AppImage file system.

The fix is to modify PKGBUILD to make a symbolic link relative to bin:

-   ln -s "squashfs-root/BlackmagicRAWPlayer/BlackmagicRawAPI" "squashfs-root/bin/"
+   ln -s "../BlackmagicRAWPlayer/BlackmagicRawAPI" "squashfs-root/bin/"

which I fixed locally without rebuilding with this:

cd /opt/resolve
sudo rm "bin/BlackmagicRawAPI"
sudo ln -s "../BlackmagicRAWPlayer/BlackmagicRawAPI" "bin/"

ratijas commented on 2025-02-15 10:19 (UTC)

The Gyroflow OFX plugin was failing to load with a seemingly unrelated log message

fuscript: symbol lookup error: /opt/resolve/libs/libc++.so.1: undefined symbol: __cxa_init_primary_exception

The fix is to link libc++abi just like the rest of the system libraries in PKGBUILD:

sudo rm -f "/opt/resolve/libs/libc++abi.so.1"
sudo ln -s /usr/lib/libc++abi.so.1.0 "/opt/resolve/libs/libc++abi.so.1"

Bink commented on 2025-02-03 02:06 (UTC) (edited on 2025-02-03 02:07 (UTC) by Bink)

@00ein00, the AUR comments is not really the place to troubleshoot in-app issues. It's likely one for the Arch forums. Also make sure the audio is not AAC encoded, that will never work (see Wiki).