Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,33 @@ If it worked, you probably don't want to have to type a command every time you w

# Troubleshooting

## make sure there is enough free space on hard drive >20 Gb, or it could stop the building process
successive tries end up creating multiples instances which take a lot of space.
if you wan't to start the building process like new, destroy all previous tries with `podman system reset`
be careful it will destroy ALL your podman builds.

## when building : error /opt/resolve/bin/resolve: error while loading shared libraries: libltdl.so.7: cannot open shared object file: No such file or directory
in the dockerfile, fill in the ARG EXTRA PACK variable with : `ARG EXTRA PACKS="libtool-ltld.x86_64"`

## The version I tried doesn't start
don't know why but these versions have been tested and work fine :
DaVinci_Resolve_17.4.6_Linux.zip

You can download legacy versions here : https://www.videohelp.com/software/DaVinci-Resolve/old-versions

## The free version cannot handle h.264 video codec (wether in mp4 or mov or other containers). they are imported, the timeline moves, but no image, no sound.

re-encode the video (I found shutter encoder is the best for that, all others like VLC, handbrake don't work) with DNxHD codec (made for editing).
tutorial here :


## I can't move or resize Resolve's main window! It's locked in place!

Try holding down the **Super** key (which often has a Windows logo). You should then be able to move or resize the DaVinci Resolve window. A center-button mouse press should also bring options for minimizing, maximizing, etc.

## The windows are way too small (or too large)!

Add this line to `resolve.sh` and adjust the value (try 1, 2, 1.5, etc.) to adjust how big Resolve appears on your screen:
Add this line to `resolve.sh` after the line --env QT_AUTO_SCREEN_SCALE_FACTOR=1 \ and adjust the value (try 1, 2, 1.5, etc.) to adjust how big Resolve appears on your screen:

--env QT_SCALE_FACTOR=2 \

Expand Down