14

When I play a .webm file using the VP9 codec in VLC, I get the following error message (and the audio is played):

VLC does not support the audio or video format "VP90". Unfortunately there is no way for you to fix this.

I can play these files in totem, but how can I play them in VLC?

I'm on Ubuntu 14.04 and VLC is 2.1.6. The package ubuntu-restricted-extras is installed.

Joschua
  • 345

4 Answers4

9

VP9 requires VLC 2.2.

sudo add-apt-repository ppa:mc3man/trusty-media

sudo apt-get update

sudo apt-get install vlc vlc-plugin-*

https://forum.videolan.org/viewtopic.php?t=131211

I had this problem in ubuntu 14.04 and it got solved by installing VLC 2.2.

2

There is no need to install ubuntu-restricted-extras to be able to play WebM with VLC. VLC 2.1.2 supports VP9 by default (see http://www.webmproject.org/vp9/ and http://www.videolan.org/vlc/releases/2.1.2.html). You might try upgrading VLC or installing the latest stable by downloading it from the VLC site directly.

Karl Wilbur
  • 1,975
2

I've had to apt remove vlc-? before I found out that something from that package was playing havoc with HTML5 video ('vp9' codec)/DASH accelerated video rendering/streaming in Firefox.

0

You may need to install restricted extras:

sudo apt-get install ubuntu-restricted-extras

That should work. But if it doesn't work after installing ubuntu-restricted-extras

Open Ubuntu Software center and search for "gstreamer" and install it.

Or open the terminal and type the following commands:

sudo add-apt-repository ppa:gstreamer-developers/ppa
sudo apt-get update
sudo apt-get install gstreamer1.0*

I hope that helps.