当前位置: 首页>>技术教程>>正文


如何播放webm视频文件?

, ,

问题描述

我已经尝试过vlc,Banshee和Totem,但他们都不认识webm格式。甚至系统也无法识别其mime-type。我该怎么玩?

最佳方案

您将拥有add the PPA ppa:gstreamer-developers/ppa

要做到这一点

  • 打开更新管理器。

  • 单击设置。

  • 转到“ ‘Other Software’”标签。

  • 点击’Add’

  • 粘贴ppa:gstreamer-developers/ppa,然后单击添加源。

  • 询问时单击关闭,重新加载。

  • 安装更新。

现在,您可以在默认的媒体播放器(图腾)中查看webm。

此外,如果要使其自动在图腾中打开,请右键单击并选择“使用其他应用程序打开”,然后选择“电影播放器​​”,然后勾选“为WebM文档记住此应用程序”

Source


通过命令行相同:

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

次佳方案

Firefox 4和Chromium将播放它。

第三种方案

VLC

sudo add-apt-repository ppa:n-muench/vlc
sudo apt-get update
sudo apt-get install vlc 

它几乎可以运行所有格式,没有使用它无法使用的格式。

VLC 1.1.0 release log

Support for WebM decoding and encoding

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/11808.html,未经允许,请勿转载。