2

For playing the videos with .mkv extension, I installed vlc player in ubuntu 14.04.

Now, while installing the vlc plugins, it is giving the following error:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package vlc-plugin-libde265
andrew.46
  • 38,003
  • 27
  • 156
  • 232

1 Answers1

5

vlc-plugin-libde265 is not available in the Ubuntu repositories as can be seen at http://packages.ubuntu.com/search?suite=all&searchon=names&keywords=vlc-plugin-libde265. To install it, you have to add the PPA at https://launchpad.net/~strukturag/+archive/ubuntu/libde265:

sudo add-apt-repository ppa:strukturag/libde265
sudo apt-get update
sudo apt-get install vlc-plugin-libde265
edwinksl
  • 23,789