LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-19-2009, 01:41 AM   #1
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Rep: Reputation: 15
playing video


can anybody tell me the complete procedure to play a video in fedora 9.I have downloaded xine but unable to install plz tell me how to install xine..
 
Old 02-19-2009, 01:55 AM   #2
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,630

Rep: Reputation: Disabled
Best way to install any package in Fedora is to use the package manager for it. YUM is the default.
Use

Code:
yum install <package-name>
In this case
Code:
yum install xine
I do not know about xine , I have not used it but find mplayer and vlc a must keep. They play almost any format.
Also F9 is growing old and F10 has come and F11 is on the way. The support for F9 will be taken back soon as F11 is out. Keep track of it. Fedora has got a small life cycle. You might want to consider upgrading to F10 to continue to get updates.

Last edited by linuxlover.chaitanya; 02-19-2009 at 01:58 AM.
 
Old 02-19-2009, 03:03 AM   #3
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Original Poster
Rep: Reputation: 15
@chaitanya

I have installed Mplayer when i play a movie I can only hear the audio.I cant see the video....
also can u tell me what is this command
yum install libdvdcss libdvdnav totem-xine xine-lib-extras-freeworld.
it was given in fedora community...

Last edited by tannu_ah; 02-19-2009 at 03:07 AM.
 
Old 02-19-2009, 03:20 AM   #4
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Original Poster
Rep: Reputation: 15
@chaitanya

I have installed xine also.It is not displaying video and showing the message "no demuxer found for ....
 
Old 02-19-2009, 03:45 AM   #5
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,630

Rep: Reputation: Disabled
Yum is a package manager that is used to install packages in Linux with all the dependency packages.
YUM install <package> will install the package and all the other packages on which the package is dependent.
If xine is not working or mplayer is not working may be there are codecs that you need to install. Or better install vlc.
Code:
yum install vlc
 
Old 02-19-2009, 02:13 PM   #6
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Original Poster
Rep: Reputation: 15
@chaitanya

I have installed vlc .but when I try to open video in vlc it(vlc itself) is not getting opened...
 
Old 02-20-2009, 12:10 AM   #7
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,630

Rep: Reputation: Disabled
Are you playing the videos from the dvd or cd media or you have them saved on the system?
 
Old 02-20-2009, 07:06 AM   #8
Tux Rules
Member
 
Registered: Feb 2009
Location: at my place
Distribution: Arch
Posts: 153

Rep: Reputation: 25
I use Mplayer, in mandriva and it works fine, maybe in fedora it needs some codecs to be installed so it could show the video and not only the sound. When u start Mplayer doesn it request for some codecs or something like that?
 
Old 02-20-2009, 07:46 AM   #9
DragonSlayer48DX
Registered User
 
Registered: Dec 2006
Posts: 1,454
Blog Entries: 1

Rep: Reputation: 75
To install Mplayer codecs in Fedora:

Code:
cd /tmp
wget http://www.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2
tar -jxvf all-20071007.tar.bz2
su -c 'mkdir -p /usr/local/lib/codecs'
su -c 'cp all-20071007/* /usr/local/lib/codecs'
rm -rf /tmp/all-20071007*
To use those codecs with different applications:

Code:
su -c 'ln -sf /usr/local/lib/codecs /usr/lib/codecs && ln -sf /usr/local/lib/codecs /usr/local/lib/win32 && ln -sf /usr/local/lib/codecs /usr/lib/win32'
 
Old 02-21-2009, 10:43 PM   #10
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Original Poster
Rep: Reputation: 15
@dragonslayer

when I open a video in Mplayer it is asking for plugin
 
Old 02-21-2009, 10:45 PM   #11
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Original Poster
Rep: Reputation: 15
@chaitanya

The video is saved in my system..
 
Old 02-23-2009, 12:42 AM   #12
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,630

Rep: Reputation: Disabled
If you do not have right plugin installed it will not play the video. Install the plugin.
 
Old 02-24-2009, 12:31 AM   #13
tannu_ah
LQ Newbie
 
Registered: Oct 2008
Distribution: fedora 9
Posts: 28

Original Poster
Rep: Reputation: 15
@chaitanya

when I open a video in xine.it is saying "problem occured while loading a library or decoder divxc32.dll" also one more window shows "the stream(video) uses an unsupported codec:MS MPEG-4 V3(win32)(DIV3)"

Last edited by tannu_ah; 02-24-2009 at 12:34 AM.
 
Old 02-24-2009, 01:19 AM   #14
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,630

Rep: Reputation: Disabled
divxc32.dll???? This seems to be something to do with windows. As far as my knowlwdgw goes, dlls are not supported on Linux. They are windows library files.
 
Old 02-25-2009, 02:09 AM   #15
Tux Rules
Member
 
Registered: Feb 2009
Location: at my place
Distribution: Arch
Posts: 153

Rep: Reputation: 25
dll's are from windows libraries. You can try to run it using wine emulator, 'cause I'm guessing that xine it's a windows application. Vine will allow you to install Divx codecs and everything you need, to run your movie player.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Video not playing!!! yogusmilu Linux - Laptop and Netbook 20 02-23-2009 03:04 AM
Playing video in MPlayer embedded video player and Mozilla fc6_user Linux - Desktop 22 04-02-2007 01:59 PM
Playing video in Kubuntu dotancohen Linux - Newbie 7 02-17-2006 04:38 PM
Error playing video Dillius Mandriva 5 01-24-2005 08:57 AM
Video playing in background Maverick1182 Linux - Software 4 08-30-2004 08:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration