> This is a multi-part message in MIME format.
> --------------70464CE5A9B78E67F7EE5927
> Content-Type: text/plain; charset=us-ascii
> Content-Transfer-Encoding: 7bit
> 
> I'm running RH5, and d/l the rhmask file for the latest Real audio
> player (rvplayer).  I followed the instructions for rhmask, and all
> seems to have worked well.  I installed the newly created RPM, but now,
> evertime I try to access some Real content, I get the following error
> message:
> 
> File compression not supported.  Cannot locate the requested ReadAudio
> decoder.
> For more information, please see Error 38 at:
> http://www.readaudio.com/help/errors.
> 
> The site they refer to is no help, as it only spits out the same useless
> one-line explanation for the error.  Anybody else have this problem or
> know how to fix it?

RealPlayer needs to be able to find a few shared objects (.so).
Check to see if you have and LD_LIBRARY_PATH env. variable pointing at
the RealPlayer directory.
If not, put something like:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/rvplayer-dir

in your .bash_profile (or .bashrc) and source it.
(Eg. source ~/.bash_profile)
Alternatively, you could write a wrapper script called rvplayer and put 
in /usr/local/bin or whatever...

It should look like this:

#!/bin/sh
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/rvplayer-dir
exec /usr/local/rvplayer-dir/rvplayer $1

Hope these help.
sb.

--
 "Men of lofty genius are most active
        when they are doing the least work".
                           -- Leonardo da Vinci



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
         To unsubscribe: mail [EMAIL PROTECTED] with 
                       "unsubscribe" as the Subject.

Reply via email to