Ubuntu – How to play a webm video file

10.04mime-typewebm

I have tried vlc, Banshee and Totem but none of them recognize the webm format. Even the system does not recognize its mime-type. How do I play it ?

Best Answer

You will have add the PPA ppa:gstreamer-developers/ppa

To do that

  • Open Update Manager.
  • Click on Settings.
  • Go to 'Other Software' Tab.
  • Click 'Add'
  • Paste ppa:gstreamer-developers/ppa and click add source.
  • Click close , Reload when asked.
  • Install Updates.

Now you can view webm in the default media player(totem) .

Additionally if you want to make it automatically open in totem,right click and select open with other application and select Movie Player and tick 'Remember this application for webm documents'

Source


Same via the command line:

sudo add-apt-repository ppa:gstreamer-developers/ppa
sudo apt-get update && sudo apt-get upgrade
# fixing a weird gstreamer installation error
sudo apt-get -f install

# now "totem <your .webm file>" will do the right thing )

Source

Related Question