Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 03-01-2008, 09:54 PM   #1 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default How to : Enable Multimedia Suport in Ubuntu 7.10.


Ubuntu is one of the widely used GNU OS which is considered as Newbie friendly . But still there are few things to work .. Here is a small/quick guide that will let you enable Playback for any type of Audio/Video files.. Since most users get baffled after they fail to play media files. So I thought of posting a guide which will let you play every Media files like DivX,Real Media,AC3,MPEG4 to name a few .. So lets get started .
Before I start I would lets do some basic settings..

1'st we have to enable repos..

Go to System -> Administration -> Software Sources . Check all the unchecked options under Ubuntu Software , Third Party Software, Updates. After that it will ask you to relode the package stats so that latest repositories can be added in the database for installation of the necessary software.
After the relode done you will be prompted to update your system . It is necessary to update your whole system before installing any software..
So I think you are done till now.. Considering system is updated lemme me now start with installing codecs and media players..

Note: In this guide I prefer installing components from terminal but you can always use the good old Synaptic Package Manager and Add/remove Programs..

Audio Playback Support


There are lots of media player out there from which you can choose your own flavor .. but I am focusing on the best right now. So in this Tutorial we will install Amarok ...

To Install Amarok Open Terminal . Main Menu -> Accessories -> Terminal .
Now type this in Terminal

Code:
sudo apt-get install amarok
Amarok is basically a KDE backed player but since its the most feature rich loaded with clean interface so I choose Amarok though you can install Gnome based players like Exaile, Banshee, XMMS [Winamp Alt.], Listen or the pre-insalled Rythmbox.

To install Gnome based players..

Code:
sudo apt-get install exaile
sudo apt-get install banshee
sudo apt-get install xmmms
sudo apt-get install listen*
Now since you have installed much of the Audio Player now we should head forward and install codecs so that these players work without any problem...

There are mainly 2 codec pack that are maily used in GUN OS..
  • Gstreamer : - This GStreamer plugin supports a large number of audio and video compression formats through the use of the FFmpeg library.GStreamer is a streaming media framework, based on graphs of filters which operate on media data.Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related.Its plugin-based architecture means that new data types or processing capabilities can be added simply by installing new plug-ins.
Gstreamer is maily used for Gnome based OS and Ubuntu will recommend you install this by default...

To install every plugin of Gstreamer do this in Terminal

Code:
sudo apt-get install gstreamer*
After you have installed Gstreamer all the above mentioned Player will work like charm while playing Media files..
  • Xine : Xine is mainly meant for KDE based players . but being a good set it is recommended that you install Xine Codecs.
To install Xine do this in Terminal

Code:
sudo apt-get install xine*
Xine will install its own Video Player which will let you play Video files.. Its interface is pretty similar to that of Power DVD ...


Now we have finally installed all the codecs necessary playing media files .. Now we should continue installing Video Players and few extra codecs...

Video Playback Support


Considering you have installed Xine too we will use Xine-Ui as our primary Video Player but we will learn to install other players tooo..
There are few other players that will let you play Video files in full swing like VideoLan (VLC) , Mplayer or use the pre-installed Totem Movie player..
To install these players do this in Terminal
Code:
sudo apt-get install vlc*
sudo apt-get install mplayer
sudo apt-get install xine-ui
After this you will able to play all the media files in case your player fails to play few restricted formats like DivX, Real Media, MPEG4, Ac3 .. do the following in terminal..

Code:
sudo gedit /et/apt/sources.list
Now add these lines at the end of the editor.. Since Ubuntu did not have these formats in repo's we'l have to add these as Media Ubuntu has these in heir repo'....

Code:
deb http://archive.ubuntu.com/ubuntu gutsy universe multiverse
deb-src http://archive.ubuntu.com/ubuntu gutsy universe multiverse
After that type the following command

Code:
sudo apt-get update
This will relode all the latest info that about the repo. that you added ...

For Ubuntu Gutsy Gibbon Users run the following command

Code:
sudo wget http://www.medibuntu.org/sources.list.d/gutsy.list -O /etc/apt/sources.list.d/medibuntu.list
Now you need to copy the key using the following command
Code:
wget -q http://packages.medibuntu.org/medibuntu-key.gpg -O- | sudo apt-key add -
Update the source list using the following command

Code:
sudo apt-get update
Now install the codecs by doing this

Code:
sudo apt-get install w32codecs libdvdcss2
Now you are one you are now able to view all the Media files .. So enjoy Tuxing and do update the system regularly

Regards Ds

P.S : This is a kids play for GNU users here but still trying to help newbies
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/

Last edited by Dark Star; 03-01-2008 at 09:54 PM. Reason: Automerged Doublepost
Dark Star is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 03-01-2008, 10:46 PM   #2 (permalink)
Married!
 
Rahim's Avatar
 
Join Date: Apr 2007
Location: Calcutta
Posts: 1,524
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Good Tutorial. You have explained it nicely of not only How-To Install but you have gone that extra mile tomake it easy to understand for a new linux user in general and Ubuntu in particular.
__________________
|| GNU/Linux User || PCLOS KDE 4.6 || 17" DELL Studio ||

topdocumentaryfilms.com
Rahim is offline  
Old 04-01-2008, 09:23 AM   #3 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Thanks a lot
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Old 04-01-2008, 09:30 AM   #4 (permalink)
Think Zen.
 
ray|raven's Avatar
 
Join Date: Dec 2005
Posts: 1,498
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Doesnt Ubuntu support those new apt:// url's?
I've seen quite a few in gary's posts.
You could replace those apt-get statements with the url's instead so they're easier for newbies.

Regards,
ray
__________________
Do what you will; but not because you must. -- Zen Quote
ray|raven is offline  
Old 04-01-2008, 03:09 PM   #5 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

yeah use apt-url handler, its easier for newbies to just click.
also in additon apt-get url handler also support installing package from repos which are not available in users's apt sources list.

by apt+<repo address>

at present single packages are supported
but multiple packages are planned

more info: https://wiki.ubuntu.com/AptFirefoxFileHandler
gary4gar is offline  
Old 10-02-2008, 11:41 PM   #6 (permalink)
Alpha Geek
 
Maverick340's Avatar
 
Join Date: Mar 2004
Posts: 635
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Surround sound on onbaord is still a prob
__________________
You and Me forever be ...
--
PSpwned
Maverick340 is offline  
Old 11-02-2008, 12:13 AM   #7 (permalink)
The Smaller Bang
 
MetalheadGautham's Avatar
 
Join Date: Sep 2007
Location: Gautham City
Posts: 7,489
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

don't misguide n00bs by saying that xine is mainly for KDE. Xine is one of the Must have Desktop Environment Neutral software available for linux. Its also used a lot in gnome. gxine, totem-xine, etc are widely used.
__________________
http://TheSmallerBang.wordpress.com
eMachines E725 - T4400 2.2GHz, 1GB, 160GB
Nokia 5130XM * T-Sonic 610 2GB
Nokia 2323C * Samsung Galaxy Y
Apple iPad 2 16GB WiFi
MetalheadGautham is offline  
Old 11-02-2008, 10:09 AM   #8 (permalink)
Married!
 
Rahim's Avatar
 
Join Date: Apr 2007
Location: Calcutta
Posts: 1,524
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Arent these repo
Code:
deb http://archive.ubuntu.com/ubuntu gutsy universe multiverse
deb-src http://in.archive.ubuntu.com/ubuntu gutsy universe multiverse
the same as
Code:
deb http://in.archive.ubuntu.com/ubuntu gutsy universe multiverse
deb-src http://archive.ubuntu.com/ubuntu gutsy universe multiverse
__________________
|| GNU/Linux User || PCLOS KDE 4.6 || 17" DELL Studio ||

topdocumentaryfilms.com
Rahim is offline  
Old 11-02-2008, 10:46 AM   #9 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,658
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Yes, they are. Only the localization changes there. I use a french server for instance, and it goes fr.archive.(...)
__________________
Harsh J
www.harshj.com
QwertyManiac is offline  
Old 11-02-2008, 12:35 PM   #10 (permalink)
Human Spambot
 
Cool G5's Avatar
 
Join Date: Aug 2006
Location: Aamchi Mumbai !!!
Posts: 4,228
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

Good tutorial.
Very nicely explained.
__________________
ShutterTux - Photography, Linux & Life! : http://shuttertux.wordpress.com
Cool G5 is offline  
Old 12-02-2008, 05:15 AM   #11 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: How to : Enable Multimedia Suport in Ubuntu 7.10.

I use archive.ubuntu.org speed is similar to a snail

@Shashwath: another gold feather on ur head! good guide for n00b's
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to install all Multimedia codecs offline in ubuntu 7.10 CadCrazy Open Source 11 29-10-2007 10:33 PM
Multimedia issues in Ubuntu 7.04 Akshay Open Source 19 22-06-2007 11:42 AM
Enabling Multimedia in Ubuntu catchjaga Open Source 1 22-12-2006 12:29 AM
Multimedia codecs for Ubuntu.Offline. ray|raven Open Source 21 17-12-2006 08:01 PM
How can I enable KDE in ubuntu?? thilina Open Source 12 02-10-2006 09:54 PM

 
Latest Threads
- by Charan
- by Charan

Advertisement




All times are GMT +5.5. The time now is 05:34 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2