Apparently, a third-party PPA was installed, I decided to use the below command commands in the terminal:
remove third-party PPAs
sudo rm /etc/apt/sources.list.d/mc3man-trusty-media-trusty*
then remove the PPA added for VLC (if any)
sudo rm /etc/apt/sources.list.d/videolan-master-daily*
Update
sudo apt-get update
install VLC:
sudo apt-get install vlc
Link: Link
then I came across another problem, VLCSub (built-in subtitle loader utility for VLC) did not work in this version of VLC, so I deleted all the installed things above:
sudo apt-get purge vlc
and then executed these commands for a VLCSub-compatible VLC ( this is deprecated, see below) ).
sudo add-apt-repository ppa: djcj / vlc-stable update sudo apt-get sudo apt-get install vlc
Strike>
Link: Link
EDIT (Updated July 7, 2015)
so djcj/vlc-stable is doomed, this is how I updated my latest ubuntu installation for 14.04:
for version 2.2.1
sudo apt-get remove vlc vlc-plugin-* #remove any vlc data / plugin sudo add-apt-repository ppa:mc3man/trusty-media sudo apt-get update sudo apt-get install vlc vlc-plugin-*
Link: Link
..... don't forget to add VLSub for a nice subtitle loading experience :)
source share