LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-02-2005, 06:16 AM   #1
ayrus
LQ Newbie
 
Registered: Mar 2005
Location: India
Distribution: RedHat Enterprise GNU/Linux
Posts: 24

Rep: Reputation: 15
Video Player for RedHat Enterprise Linux


After getting help from the forum, I could make my xmms work perfectly. Now I wish to have a Video Player which can play .dat as well as mpeg 1 layer-3 video as well. I just dnt want to reboot windows when i wish to go for music videos. That is the only time I am forced to go to windows. Otherwise I m having a great time with Linux.

Please suggest some video player, download location and installation instructions.

Looking forward to install a video player from your support.

ayrus ........
 
Old 03-02-2005, 06:44 AM   #2
houdelou
Member
 
Registered: Nov 2004
Location: Canada
Distribution: Ubuntu
Posts: 44

Rep: Reputation: 15
xine is a very good video player.

here is the link

http://xinehq.de/
 
Old 03-02-2005, 06:54 AM   #3
ayrus
LQ Newbie
 
Registered: Mar 2005
Location: India
Distribution: RedHat Enterprise GNU/Linux
Posts: 24

Original Poster
Rep: Reputation: 15
I went for xine but it asks to install so many things, so I just left it. Is there some other option
 
Old 03-02-2005, 07:12 AM   #4
perfect_circle
Senior Member
 
Registered: Oct 2004
Location: Athens, Greece
Distribution: Slackware, arch
Posts: 1,783

Rep: Reputation: 53
mplayer:
http://www.mplayerhq.hu/homepage/design7/dload.html

read a guide on how to install it for FC3: http://www.mjmwired.net/resources/mplayer-fedora.shtml
Should be the same for Red-hat enterprise.

Quote:
I went for xine but it asks to install so many things, so I just left it. Is there some other option
All you need is the xine engine and a gui like gxine, since redhat use gnome by default. If you also use the mplayer codecs with xine, you'll be able to play every video file. With libdvdcss you can play encrypted dvd's. Xine is perfect.

*EDIT*
if you install mplayer, with mplayer plugin:http://mplayerplug-in.sourceforge.net/ you'll also be able to play embeded internet videos with mozilla/firefox

I think it's better to install them both, xine and mplayer. Mplayer is a little faster than xine, and some videos play better with mplayer, but mplayers gui is not as stable as xine is.

Last edited by perfect_circle; 03-03-2005 at 01:14 AM.
 
Old 03-02-2005, 11:22 PM   #5
ayrus
LQ Newbie
 
Registered: Mar 2005
Location: India
Distribution: RedHat Enterprise GNU/Linux
Posts: 24

Original Poster
Rep: Reputation: 15
Thanx a lot .. I installed Xine but forgot to install UI for that .. Still, at least I cud install Xine without much of a problem .. I also installed mpegTV .. It is kinda ok but frames are moving with noticeable jerks .. I hope xine will be smoother ..
 
Old 03-02-2005, 11:24 PM   #6
ayrus
LQ Newbie
 
Registered: Mar 2005
Location: India
Distribution: RedHat Enterprise GNU/Linux
Posts: 24

Original Poster
Rep: Reputation: 15
read a guide on how to install it for "FC3":


WHAT IS - "FC3"
 
Old 03-02-2005, 11:42 PM   #7
Gibsonist
Member
 
Registered: Mar 2004
Location: Meersburg (GER)
Distribution: Cygwin,RH 7.2 7.3, SuSe 6.4 8.2 9.1,TinyLinux, Debian Sarge, Knoppix 3.*, Knoppicilin, Knoppix STD
Posts: 191

Rep: Reputation: 30
Quote:
Originally posted by ayrus
WHAT IS - "FC3"
FC3 = Fedora Core 3

The normal Red Hat distro (not enterprise) was renaimed to Fedora Core some time last year
 
Old 03-03-2005, 12:16 AM   #8
ayrus
LQ Newbie
 
Registered: Mar 2005
Location: India
Distribution: RedHat Enterprise GNU/Linux
Posts: 24

Original Poster
Rep: Reputation: 15
Found UI for Xine .. Hope to get all set by afternoon .. So that I don't have to switch back to Windows for Videos ..

Thanks .. Good Day ..
 
Old 03-03-2005, 01:28 AM   #9
perfect_circle
Senior Member
 
Registered: Oct 2004
Location: Athens, Greece
Distribution: Slackware, arch
Posts: 1,783

Rep: Reputation: 53
Quote:
Originally posted by ayrus
Thanx a lot .. I installed Xine but forgot to install UI for that .. Still, at least I cud install Xine without much of a problem .. I also installed mpegTV .. It is kinda ok but frames are moving with noticeable jerks .. I hope xine will be smoother ..
I don't know what system you have but for both xine and mplayer, my personal opinion is to compile them from source. Both are "heavy" multimedia programs which means that they use a lot of floating point arithmetic, and cpu optimization will make a difference. I'm using slackware on an Athlon XP and for mplayer I used:

Code:
CFLAGS="-O2 -march=athlon-xp -mcpu=athlon-xp" ./configure \
        --prefix=/usr/local \
        --enable-gui \
        --enable-largefiles \
        --disable-cdparanoia \
        --enable-smb \
        --enable-menu \
        --disable-inet6 \
        --enable-gif \
        --enable-png \
        --enable-jpeg \
        --enable-vorbis \
        --enable-gl \
        --enable-vesa \
        --enable-xv \
        --enable-x11 \
        --enable-xinerama \
        --disable-mad \
        --disable-libdv \
        --disable-arts \
        --language=en,zh_CN \
        --enable-mmx \
        --enable-mmx2 \
        --enable-3dnow \
        --enable-3dnowex \
        --enable-sse \
        --enable-sse2 \
        --with-codecsdir=/usr/local/lib/codecs \
        --with-xvidlibdir=/usr/local/lib \
        --with-xvidincdir=/usr/local/include \
        --with-reallibdir=/usr/local/realplay/Codecs \
        --with-xanimlibdir=/usr/local/lib/codecs
But just doing:
Code:
./configure --enable-gui --enable-largefiles --enable-menu
will do. For xine i use the default i686 packages that comes with slackware.

If you are playing something from a cd or a dvd, make sure you have DMA enabled. What kind of system CPU/RAM/Video Card do you have?
 
Old 03-03-2005, 02:14 AM   #10
ayrus
LQ Newbie
 
Registered: Mar 2005
Location: India
Distribution: RedHat Enterprise GNU/Linux
Posts: 24

Original Poster
Rep: Reputation: 15
Lightbulb

Sorry, I didn't give hardware specs before ..

Here it is

CPU - Intel Celeron 1.7 GHz
MOTHER BOARD - Intel 845
RAM - 256 MHz
Video Card - On-board Intel (Don't remember exact specs)

How to configure DMA ..

Thanks a lot ..

ayrus ............
 
Old 03-03-2005, 02:59 AM   #11
perfect_circle
Senior Member
 
Registered: Oct 2004
Location: Athens, Greece
Distribution: Slackware, arch
Posts: 1,783

Rep: Reputation: 53
Quote:
Originally posted by ayrus
Sorry, I didn't give hardware specs before ..

Here it is

CPU - Intel Celeron 1.7 GHz
MOTHER BOARD - Intel 845
RAM - 256 MHz
Video Card - On-board Intel (Don't remember exact specs)

How to configure DMA ..

Thanks a lot ..

ayrus ............
as root, do:
hdparm /dev/hdx|grep dma (where x=a,b,c,d)
for my hard disk:
Code:
hdparm /dev/hda
 root@darkstar:/home/skalkoto# hdparm /dev/hda

/dev/hda:
 multcount    = 16 (on)
 IO_support   =  1 (32-bit)
 unmaskirq    =  1 (on)
 using_dma    =  1 (on)
 keepsettings =  0 (off)
 readonly     =  0 (off)
 readahead    =  8 (on)
 geometry     = 24792/255/63, sectors = 398297088, start = 0
for my cd rom
Code:
hdparm /dev/hdc

/dev/hdc:
 HDIO_GET_MULTCOUNT failed: Invalid argument
 IO_support   =  1 (32-bit)
 unmaskirq    =  1 (on)
 using_dma    =  1 (on)
 keepsettings =  0 (off)
 readonly     =  0 (off)
 BLKRAGET failed: Invalid argument
 HDIO_GETGEO failed: Invalid argument
if dma is off do:
hdparm -d1 /dev/hdx (x=a,b,c,d)
 
  


Reply



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
RedHat Enterprise Linux WS IcoNyx Linux - Software 1 09-19-2005 03:39 AM
Which is the best video player for Linux? girl1984 Linux - Software 10 06-29-2005 08:46 PM
video now player for linux? frieza Linux - Software 4 02-15-2005 11:17 PM
MP3 Player for RED HAT LINUX Enterprise 3 RatanSA Linux - Newbie 2 10-27-2004 02:51 AM
need a video player redhat 9 popcorn5714 Red Hat 6 10-27-2003 08:59 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:57 AM.

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