3

I just upgraded my system from Ubuntu 20.04 to 22.04, however, the VLC media player is not working at all, I tried to uninstall it and re-install it (vlc 3.0.18) again using sudo snap install vlc but it's still not launching

I tried the solutions from this thread, but nothing worked. One solution suggested to install from ppa:videolan/master-daily and then sudo apt-get install vlc and it did work, however, the app was unstable. I checked their bug tracking system, no one reported such an issue over there.

pbhj
  • 3,152
  • 21
  • 38
Ahmad Bader
  • 41
  • 1
  • 6

5 Answers5

4
  1. Have you tried installing VLC from the default repository by just using the following command:

    sudo apt install vlc
    
  2. You can also try installing VLC using flatpak:

    sudo apt install flatpak
    sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
    flatpak install flathub org.videolan.VLC
    

You can refer to following guide.

https://linuxgenie.net/how-to-install-vlc-in-ubuntu-22-04/

Linux Genie
  • 301
  • 4
0

Open "Applications", uninstall the snap-VLC, reinstall VLC from "ubuntu-jammy-universe (deb)"
There is a drop-down in the upper right corner which says "snap-store (Snap)" by default

Edit: Check if you have corrupted packages (after upgrade). Me, I had a "broken" libdvd... So you may try to fix this first:
sudo dpkg-reconfigure libdvd-pkg

0

Good reference for How to Fix Video Stuck or Freeze in VLC I had similar problems with VLC on my Ubuntu 22.04 LTS and the methods outlined in this 'How to' article worked for me.

  • Method 1: Update VLC Media Player to the latest version
  • Method 2: Increase cache values in VLC Player
  • Method 3: Disable Hardware Decoding in VLC Player
  • Method 4: Change FFmpeg settings in VLC Player
  • Method 5: Switch video output to DirectX DirectDraw in VLC
0

Faced the same issue.

VLC 3.0.18 installed from Snap is missing this package:

sudo apt install libaribb24-0
0

Ubuntu 22.04.2 LTS

sudo rm /var/cache/fontconfig/*
rm ~/.cache/fontconfig/*
fc-cache -r

See the original post

Cesar Devesa
  • 207
  • 2
  • 5