Page 1 of 1

MakeMKV won't start under Ubuntu 23.10

Posted: Mon Jan 01, 2024 5:20 am
by FattyMcGee
Edit -- Solved. Not sure what I did specifically, but I reinstalled and uninstalled the snap. I did a bunch of reckless sudo rm-ing, and then reinstalled. Seems to be working fine again.


I've been using MakeMVK (registered if that's different) for years with no problems. This week, my system updated to Ubuntu 23.10. Now MakeMKV won't open. I get,

"Application failed to initialize
NO_ANSWER_FROM_MAKEMKVCON"

If I try to run from the command line, I get ---

"/usr/bin/makemkvcon: error while loading shared libraries: libavcodec.so.58: cannot open shared object file: No such file or directory"

Long term install follows "make" instructions from this forum. Today had tried SNAP as well. Same thing.

I found online someone thinking this was caused by antivirus software. As far as I can remember, there is none on this machine.

Thanks for any suggestions.

Re: MakeMKV won't start under Ubuntu 23.10

Posted: Mon Jan 01, 2024 9:54 pm
by FattyMcGee
Uninstalled and installed fresh. No luck.

Re: MakeMKV won't start under Ubuntu 23.10

Posted: Sat Jan 13, 2024 11:57 pm
by mr.fuzzypants
Seems like a library issue. See if libavcodec-dev is installed:

`dpkg -s libavcodec-dev`

If it isn't installed, install it:

`sudo apt-get install libavcodec-dev`

If it is installed go into your library folders:

`cd /lib/x86_64-linux-gnu`

and perform a `ls -al | grep libavcodec` make sure there's a symbolic link pointing libavcodec.so -> whatever the latest version of libavcodec.so.x.x.x.x is.

Here's what my output looks like:

root@localhost:/lib/x86_64-linux-gnu# ls -al | grep libavcodec
-rw-r--r-- 1 root root 21736374 Feb 17 2023 libavcodec.a
lrwxrwxrwx 1 root root 23 Feb 17 2023 libavcodec.so -> libavcodec.so.59.37.100
lrwxrwxrwx 1 root root 23 Feb 17 2023 libavcodec.so.59 -> libavcodec.so.59.37.100
-rw-r--r-- 1 root root 15000160 Feb 17 2023 libavcodec.so.59.37.100

Re: MakeMKV won't start under Ubuntu 23.10

Posted: Wed Jan 17, 2024 4:35 am
by FattyMcGee
Thanks for the suggestion. It says it's installed and this the output I get below. Seems about the same as yours. Anything look wrong?

-rw-r--r-- 1 root root 21809314 Aug 23 12:33 libavcodec.a
lrwxrwxrwx 1 root root 22 Aug 23 12:33 libavcodec.so -> libavcodec.so.60.3.100
lrwxrwxrwx 1 root root 22 Aug 23 12:33 libavcodec.so.60 -> libavcodec.so.60.3.100
-rw-r--r-- 1 root root 15175448 Aug 23 12:33 libavcodec.so.60.3.100

Re: MakeMKV won't start under Ubuntu 23.10

Posted: Wed Jan 17, 2024 4:37 am
by FattyMcGee
Is it possible I tried to uninstall but failed to do so completely and am interfering with getting a clean install?