Ubuntu 默认支持哪些编解码器?

Ubuntu 默认支持哪些编解码器?

安装 Ubuntu 时,有一个选项可以安装一些 mp3 编解码器,它还会安装其他编解码器吗?

答案1

首选列表为:

Ogg Vorbis、Ogg Theora、WebM

要打印所有已安装编解码器的列表,请使用

dpkg --get-selections  | awk '{print $1}' | grep -iR codec; export number=`dpkg --get-selections  | awk '{print $1}' | grep -iR codec | wc -l`; echo; echo "$number codecs installed."; echo

如需更多信息,请参阅

https://help.ubuntu.com/community/RestrictedFormats

https://help.ubuntu.com/community/FreeFormats

相关内容