😵
UbuntuでDaVinci Resolveが開けない
DaVinci Resolveがどうしても使いたかった
Linuxで動作する動画編集ソフトウェアの中では一番情報が充実していて使いやすそうだなと思ったんです。
DaVinci Resolve (ダビンチ・リゾルブ) はブラックマジックデザインが開発・頒布している低価格で使用できる統合型のポストプロダクションソフトウェアである。オフライン/オンライン動画編集、音声編集、2D/3Dデジタル合成、カラーコレクション/グレーディング、メディア管理、映画用オーサリング、動画共有サイトへの投稿などが可能となっている。
Wikipediaより引用
未対応のGPU処理モード???
対処法を調べながら、何度か「GPU処理モード」と「GPU選択」という2つのチェックボックスをいじっていたのですが、解決しませんでした。
GPUドライバが必要らしい
僕のデスクトップのGPUはIntel® UHD Graphics 630なのでIntelのドライバをインストールすることにしました。
- Create temporary directory
mkdir neo
- Download all *.deb packages
cd neo wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.14828.8/intel-igc-core_1.0.14828.8_amd64.deb wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.14828.8/intel-igc-opencl_1.0.14828.8_amd64.deb wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-level-zero-gpu-dbgsym_1.3.26918.9_amd64.ddeb wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-level-zero-gpu_1.3.26918.9_amd64.deb wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-opencl-icd-dbgsym_23.30.26918.9_amd64.ddeb wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-opencl-icd_23.30.26918.9_amd64.deb wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/libigdgmm12_22.3.0_amd64.deb
- Verify sha256 sums for packages
wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/ww30.sum sha256sum -c ww30.sum
- Install all packages as root
sudo dpkg -i *.deb
In case of installation problems, please install required dependencies
apt install ocl-icd-libopencl1
🥳
やったー!
Discussion