1

I am using Ubuntu 21.10. I installed Kdenlive using -

sudo snap install kdenlive

Now when I try to open any video from system, Kdenlive can't detect any of my videos in any of my folder. I guess it has something to do with apparmor. So what I have to do now?

Payel Senapati
  • 315
  • 1
  • 2
  • 12

1 Answers1

3

Remove the snap package (sudo snap remove kdenlive) and use apt instead

sudo apt install kdenlive

In Ubuntu 21.10, apt hosts a slightly older version of Kdenlive (4:21.04.3-2). If you want the very latest version, you can use the official PPA, with the following commands

sudo add-apt-repository ppa:kdenlive/kdenlive-stable
sudo apt update
sudo apt install kdenlive

Alternatively, you can use the appimage.

The appimage and the apt packages should not have permission issues.