首页 > 系统相关 >Multimedia (MP3, MPEG-4, AVI, DiVX, etc.) support in Ubuntu 12.04 (Precise)

Multimedia (MP3, MPEG-4, AVI, DiVX, etc.) support in Ubuntu 12.04 (Precise)

时间:2023-04-03 23:33:43浏览次数:54  
标签:Precise MPEG get -- sudo apt install Ubuntu


Why doesn’t Ubuntu support MP3 ‘out of the box’?

Ubuntu cannot include support for MP3 or DVD video playback or recording. MP3 formats are patented, and the patent holders have not provided the necessary licenses. Ubuntu also excludes other multimedia software due to patent, copyright, or license restrictions, such as Adobe Flash Player and RealNetworks RealPlayer.

That doesn’t mean you can’t play .mp3 files in Ubuntu, it just takes a bit of work (not much).

Follow these instructions to get mp3 and other multimedia support on your Ubuntu 12.04.

Medibuntu (Multimedia, Entertainment & Distractions In Ubuntu ) is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons (copyright, license, patent, etc ) as explained above.

Open the terminal (From 'Dash' ) and type following command to adds Medibuntu's repository to Ubuntu. It also adds Medibuntu's GPG key to your keyring, which is needed to authenticate the Medibuntu packages:


sudo wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring sudo apt-get --quiet update

 

For i386 Users install Codecs using the following command


sudo apt-get install w32codecs libdvdcss2

 

For amd64 Users install Codecs using the following command


sudo apt-get install w64codecs libdvdcss2

 

Install mplayer using the following command


sudo apt-get install mplayer smplayer

 

Mplayer Plugin for Firefox


sudo apt-get install mozilla-mplayer

 

VLC Media player and plugins:


sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc

 

DVD::Rip is a DVD backup/copy program, written in GTK-based perl, that uses the transcode video/audio processing and conversion tools. To install it type:


sudo apt-get install dvdrip

标签:Precise,MPEG,get,--,sudo,apt,install,Ubuntu
From: https://blog.51cto.com/u_8895844/6167725

相关文章

  • Select all in address bar of firefox (Ubuntu, Linux Mint) with a single click
    Toomanythingstomodifyafterinstallingubuntuorlinuxmint.OneoftheannoyingthingisClickingtheaddressbaronFirefox(providedwithUbuntu,linuxmint)doesn’tselectthewholetextinit.Itsaverysmallproblem.Butitssoannoyingthat,t......
  • FFmpeg再学习 -- FFmpeg+SDL+MFC实现图形界面视频播放器
    继续看雷霄骅的课程资料-基于FFmpeg+SDL的视频播放器的制作最后一篇,主要是想学一下MFC创建和配置。一、创建MFC工程文件->新建->项目->VisualC++->MFC应用程序应用程序类型,选择基于对话框生成效果如下:二、设置控件找到“工具箱”,就可以将相应的控件拖拽至应用程序对话框......
  • FFmpeg再学习 -- Windows下安装说明
    看了半晌雷霄骅的ffmpeg的视频。待续稍后总结。一、FFmpeg简介FFmpeg是一个开源免费跨平台的视频和音频流方案,属于自由软件,采用LGPL或GPL许可证(依据你选择的组件)。它提供了录制、转换以及流化音视频的完整解决方案。它包含了非常先进的音频/视频编解码库libavcodec,为了保......
  • ubuntu eclipse 下驚醒GTK的配置(全)
    偶然的想法想玩玩GTK,因为Qt就是对gtk的C++封装,想着gtk应该比qt更高的执行效率吧,下面分享下自己搭建的过程。 1、我的ubuntu虚拟机是安装了eclipse+cdt的,如果是安装了eclipse没有安装CDT,则要安装CDT:     .可以在Eclipseupdate中输入以下地址来安装:http://download.eclipse......
  • Ubuntu22 kettle
     https://www.jianshu.com/p/446506134564cat/etc/apt/sources.listdebhttp://cz.archive.ubuntu.com/ubuntubionicmainuniverseapt-keyadv--keyserverkeyserver.ubuntu.com--recv-keys3B4FE6ACC0B21F32apt-getinstalllibwebkitgtk-1.0-0[root@kettl......
  • Ubuntu 17.04 将取消 Swap 分区?
    Canonical的软件工程师DimitriJohnLedkov最近宣布即将发布的Ubuntu Linux 系统安装时将丢弃Swap分区方式,改为交换文件方式。对我们中的大多数使用带SSD或NVMe闪盘及内存充足的人来说,这不是什么大新闻。不过那些想要将Ubuntu后续版本安装在10多年前PC......
  • Ubuntu 17.04 将取消 Swap 分区?
    Canonical的软件工程师DimitriJohnLedkov最近宣布即将发布的Ubuntu Linux 系统安装时将丢弃Swap分区方式,改为交换文件方式。对我们中的大多数使用带SSD或NVMe闪盘及内存充足的人来说,这不是什么大新闻。不过那些想要将Ubuntu后续版本安装在10多年前PC......
  • ubuntu下配置supervisor 运行golang打包后的可执行文件
    aptupdateaptinstallsupervisorvim/etc/supervisor/supervisord.conf添加如下配置:command配置成可执行文件的路径,directory为文件所在目录[program:tempupService]command=/data/goServicedirectory=/dataautostart=trueautorestart=truestartsecs=10stdout_lo......
  • ffmpeg enable option
    {用法:配置[选项]选项:[描述后括号中的默认值]帮助选项:--help打印此消息--quiet抑制显示信息输出--list-decoders显示所有可用的解码器--list-encoders显示所有可用的编码器--list-hwaccels显示所有可用的硬件加速器--list-demuxers显示所有可用的解复用器--list-mu......
  • 在Ubuntu21.04上安装Redmine出现的一些问题
    安装参考文章:https://blog.csdn.net/q544344318/article/details/129118703前置条件:mysql#创建独立的用户,我使用root无法连接!!!CREATEUSER'redmine'@'localhost'IDENTIFIEDBY'password';#创建数据库,你也可以把redmine_development,redmine_test#创建出来,我三个都创建了......