- Install
- Download https://www.blackmagicdesign.com/products/davinciresolve
SKIP_PACKAGE_CHECK=1 ./DaVinci_Resolve_20.0b2_Linux.run
- Remove old built-in libraries
sudo rm -r /opt/resolve/libs/libgio* ; rm -r /opt/resolve/libs/libglib* ; rm -r /opt/resolve/libs/libgmodule* ; rm -r /opt/resolve/libs/libgobject*
- Restore control bars on KDE
Window Rules
➡️ Description / Class:resolve
➡️ Appearance & fixes:No titlebar and frame = NO
➡️ Force On - No sound?
sudo apt install pipewire-alsa
Reboot. - No .mp4 rendering (h.264 / h.265) ? Microsoft / Apple license these. Free: No ): Studio: Yes.
- Studio: Awesome NVENC accellerated AV1 support in .MP4 using 4000+ series Nvidia on Linux.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# mysql-dsn | |
# Takes a DSN as argument and tries to connect to the specified database using the "mysql"-command. | |
# Passwords must be quoted ("url-encoded"). | |
# | |
# Example: | |
# $ mysql-dsn mysqli://me:top_secret@hostname:33006/db-name | |
import re |