Real Player problems

Hi -sorry if this is in the wrong place but I have sort of audio problem. I'm a big listener to the BBC radio service on my Macs which works through streaming using Real player via Safari. Since this morning I have had no sound from it at all on my iMac yet it works fine on my Macbook. i have tried unistalling 7 reinstalling real player but still no joy. After messing about restarting etc & reinstalling I have tried playing a regular mp3 file via Real player but get the following warning - " Cannot open the audio device. Another application may be using it" yet i have no other apps open etc and it says this after a full restart. Both my Macs are intel core duo.
Any help greatly appreciated.

I had this same problem occur - here's the fix I found:
Open "Audio MIDI Setup" in /Applications/Utilities/
Under "Properties For:" select "Built-in Output"
In the "Audio Output" section, set the Format to 44100.0 Hz
Close Audio MIDI Setup and try using RealPlayer again, the audio should now work.
I'm running 10.4.10 on an Intel machine and RealPlayer 10.1.
I hope this helps.

Similar Messages

  • I have updated to Firefox 6 on OS Vista; since then I can't play YouTube videos, operate Skype or Real Player. How do I fix the problem successfully?

    YouTube videos seem to load for approximately a second before stopping... and then there is no progress at all. After upgrading to Firefox 6, I received a message saying that it is not compatible with Skype and Real Player (?) and that certain updates could therefore not be performed.
    With all due respect, what good is it to upgrade to the latest version of Firefox if popular applications like YouTube and Skype can't operate anymore? I desperately need to solve the problem - if there is no solution other than 'downgrading' to a previous version of Firefox, which version would that be?
    Thank you for your time and dedication in sourcing a solution in this regard.
    Regards
    ValleyMan

    Uninstall version 6, Google for a download site for version 5.1. Problem solved.

  • Safari 2.0.3 problems with flash, wmv, and real player

    I am having problems with safari 2.0.3 on my new macbook pro.
    1. wmv and real player media will not play- and i have both of the programs. they worked perfectly on my old powerbook.
    2. flash is not working on safari- i have downloaded and installed the lastest update.
    any solutions?
    thanks,
    daivid

    Welcome to Apple's Users Help Users Forums.
    Hi dixbam,
    Glad the problem is fixed. You got some great help. Give Andy his Green Star. You have rewards to hand out.
    Gold Star = Helpful = 5 pts w 2 available and Green Star = Solved = 10 pts
    Quote from the emails Apple sends re threads:
    "===============================================
    IF YOU ARE THE AUTHOR OF THE ORIGINAL QUESTION:
    ===============================================
    When you return to view the answers, please mark responses appropriately. Simply login and select the value you desire for applicable responses. As the author of the original question, you may assign a helpfulness value to responses. Please use the following when rating a response:
    None: The response was simply a point of clarification to my original question or didn't really help.
    Helpful: This response helped with a portion of my question, but I still need some additional help.
    Solved: This response has solved my problem completely.
    WHY SHOULD I DO THIS?
    In short, here are 3 reasons why it's worth a few moments of your time:
    1) Other members have taken time out of their day to assist you, so please take a moment to give them credit for the assistance they have provided.
    2) Your rating not only helps your peers earn points toward their status in Discussions, but validates the quality of the solution you've received.
    3) Other readers will be able determine which response(s) helped solve the original question, which will greatly enhance the knowledge and experience for all community members and visitors.
    ===============================================
    We appreciate your participation in Apple Discussions. Thank you for being part of our community.
    Apple Discussions Team"

  • I can't download videos to Real Player. The settings are correct and i can download in Internet Explorer 7 with no problem but not FireFox 5...any ideas??

    I can't download videos to Real Player. The settings are correct and i can download in Internet Explorer 7 with no problem but not FireFox 5...any ideas??

    I'm still experiencing this problem.  I went to settings, general, software and it says Install now.  But when I try, I get an error message. 

  • Firefox will not load because problem with real player plug in

    Problem is with vista machine - No problem with machine on Windows 7.
    1 Firefox tries to load Real player add on but just hangs.
    2 I load Firefox again - perhaps need to do it more than once and, eventually it does load normally when I get the message:
    Real player add on incompatile.
    I have to choose Do not Search when it the loads and behaves as normal.
    Had this with other add ons and was able to delete them but will notlet me delete real player.

    hello, normally such issues are caused by a firewall/security software which doesn't recognize & therefore blocks new firefox versions. please try to remove all program rules for firefox in your firewall and let it detect the program again: [[Fix problems connecting to websites after updating Firefox]]

  • Problem with playing audio data using Real Player

    i've seen the intruction for playing video data (.rm) using real player and it works. Then i tried to play audio data (.wav, .dat, .mp3) with real player, but it didn't work.
    These are some codes i've wrote:
    ------------------------------------------- BEGIN PL/SQL CODES---------------------------------------
    CREATE TABLE SONGS
    ( Item_ID number not null PRIMARY KEY,     
    Audio ordsys.ordaudio
    create or replace procedure load_audio(id integer, filename in varchar2) as
    obj ORDSYS.ORDAudio;
    ctx RAW(4000) := NULL;
    begin
    INSERT INTO SONGS VALUES(ID,
         ORDSYS.ORDAudio.init());
    SELECT audio into obj from Songs
    where item_id = id FOR UPDATE;
    obj.setSource('FILE','AUDIODIR', filename);     
    Obj.setDescription('A movie trailer');
    Obj.setMimeType('audio/x-pn-realaudio');
    Obj.setFormat('Real Media File Format');
    obj.import(ctx);
    UPDATE Songs
         SET audio=obj WHERE item_id=id;
    COMMIT;
    END;
    show errors;
    truncate table songs;
    exec load_audio(1,'aud1.wav');
    exec load_audio(2,'aud2.mp3');
    exec load_audio(3,'testaud.dat');
    -- just for comparison, i put a video file (.rm)
    exec load_audio(4,'autorace.rm');
    commit;
    show errors;
    create or replace procedure get_audio(
         audio_id in varchar2,
         mimetype out varchar2,
         data out blob) as
         tempBLOB BLOB;
         s varchar2(200);
    begin
    -- Deliver audio and mimetype
    select t.audio.getcontent(), t.audio.getmimetype()
    into tempBLOB, s
    from songs t where t.item_id = audio_id;
    data := tempBLOB;
    mimetype := s;
    end;
    show errors;
    ---------------------------------------- END of PL/SQL CODES-------------------------------------
    -----------------------------------MOUNTPOINT at FILESYSTEM rmsever.cfg-------------------
    <List Name="pn-oracle-audio">
    <Var Database="oracle"/>
    <Var HeaderCacheSize="2048"/>
    <Var LobFetchSize="32768"/>
    <Var MaxCachedConnections="1"/>
    <Var MountPoint="/dbaudio/"/>
    <Var Password="ZGF2aWQ="/>
    <Var ShortName="pn-oracle"/>
    <Var SQL="get_audio"/>
    <Var Username="skripsi"/>
    </List>
    ----------------------------------------End Of MOUNTPOINT----------------------------------
    then in the real player, i tried some urls :
    http://david:88/ramgen/dbaudio/1 --> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/2 ----> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/3 ----> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/4 ----> it worked
    did i put a wrong url?
    does the http://..../ramgen/... path is just for ram file?
    can anyone show me the way to play audio data using real player?
    Thanx before.

    Yes, realserver expects an exact mimetype.
    to make matters worse, it expects audio/x-pn-realaudio (an audio mimetype) for video!?!?!
    Seems the code inside maps multiple file extensions to some mime type. Only one is allowed.
    I have used the unix strings commands in teh plugins directory to find the exact mime type realserver is expecting. The file format plugins have this information in them.
    Larry

  • Real Player, Windows Media Player and Quicktime plugin problems - HELP!

    All I want to do is view game trailers in different website in either real, wmv or mov etc. I have downloaded the programs (free ones) and installed them but they still persist not to work in the browsers. The program themselves work fine just not in the browsers where I use them the most. I have also checked the internet plugins file on my computer and they are in there. What can I do for them to work??
    HELP.

    ( OT) Hello, Tom Graves,
    Welcome Back !!!
    Quicktime works for us without Rosetta, I have not tried the other two.
    wmp & real player, though i hear there is alot of finagling for wmp,
    Regards,
    Eme :~{)
     Power PC G4 (3.3) ♥ iMac Flat Panel 10.3.9 ] 15 Alum.PowerBook Tiger   Mac OS X (10.4.6)   AEBS & iMac Intel Core Duo 2gb
    Message was edited by: Eme
    Message was edited by: Eme~ glad to see you are well, just really busy.

  • I have recently installed firefox 4. it is wonderful. small problem is i cant get to use real player to download flash player files (like u tube for example) although the plug inn in the real player setting supports firefox. thanks

    i have firefox 4 on my computer 9fujitsu simens laptop) system of computer is windows xp pro sp3. i watch lots of videos on u tube and similar applications. usually there is a feature on real player that allows me to download these videos to my computer, and this feature works perfectly for internet explorer, and google chrome. nevertheless it doesnt work on firefox. i checked that the option on the real player menu supports firefox for downloading but i just cant activate it

    You had to have some kudos for the effort put in to your thread as week as the point you make.

  • I downloaded and installed firefox 5, but uninstalled it because it is not conpatible with Real Player video downloader. I cannot download videos from You tube or other sites with Firefox 5. How can I resolve this problem? ooader

    I use Real Player to play music and videos. I also download videos from You Tube and from other sites thru Real Player which is compatible with Firefox 4.0.1, but not with Firefox 5. Please tell me why?

    Firefox 4.0.1 has been an unsafe browser since the release of Firefox 5. So please don't use it.
    Real hasn't made Real Player Browser Plugin compatible with Firefox 5.
    For alternatives, see:
    https://addons.mozilla.org/en-US/firefox/search/?sort=weeklydownloads&cat=all&q=video+download&y=13&x=11

  • Problem with streaming on Real Player - only on Mac OS X

    Hi!
    I am having a serious issue since the last sunday. I use to listen to some radios from my home country on my Mac, and everything was fine til the day I turned on my computer and got this message from Real Player: " Requested file not found. The link you followed may be outdated or inaccurate. rtsp://real.rbsonline.com.br/liverbs/*/broadcast/rdgaucha/gaucha.rm "
    I tryed everything, and the link seems to work perfectly on any windows computer. I tried uninstalling and reinstalling Real Player several times, tried to use other softwares like VLC to play, and nothing seems to work.
    Any suggestions? Please help.

    When I'm using disk utility and use "verify disk" I get the following message:
    "First Aid failed
    Disk utility stopped verifying "UltraMax" because the following error was encountered.
    Filesystem verify or repair failed."

  • Can't download real player file from link

    I'm new to the mac world and I am trying to download a real player file (.rm) from a link that is on one of my course websites (I've tried Safari and Firefox). When I "right click" and select "Download File" it just downloads the actual html link, not the file. I'm able to download the file on my PC with no problems. Am I just missing something with the mac?

    Are you running RealPlayer 11? That includes a downloader that tells you when a file is actually available for download.

  • I am trying to install Real Player onto my MacBook Pro

    Reason is toaccess RTE Lyric FM radio station. I have not had success. if anyone has had similar problems and can offer installation assistance i would appreciate it. thank you.

    The site makes it appear you can only use Windows Media Player or Real Player, but that's not entirely true as the stream isn't copy protected and they provide a download url to connect too with other players.
    http://www.rte.ie/radio/how_listen.html
    Download the free VLC media player here (donate if you can)
    http://www.videolan.org/vlc/
    Now look on this page
    See under the VLC player it says "play in stand alone player?"
    If you click that it will download a small file like you see at the top of the picture (it will be in the Downlaods folder)
    Now simply right click on that (after VLC is installed ) and open that file with VLC and the stream will play.
    Else open it from in VLC via the Network connection.
    Some other great free software for codecs you'll come across is
    Perian and Flip For Mac, install these two (along with VLC) and your 99% of audio/video needs will be taken care off.
    As long as the stream isn't copy protected you don't need Real Player or Windows Media Player, just a gimmick by that radio site. But deep down they want as many listeners as possible.

  • Why the real player download feature doesn't work with my 14.0.1 firefox? in the past (before update mozzila) it was working... now it doesn't. why?

    i had a previous version of mozzilla firefox and i updated. since then, the feature of the real player doesn't work. propably isn't compatible. although, with my internet explorer it works. i went to the settings of the real player and the only explorer it shows is Internet Explorer. The Mozzilla Firefox doesn't appear. What can i do? I unistalled and reinstalled many times the real player but it isn't its problem. help me please!

    See : https://addons.mozilla.org/en-US/firefox/blocked/i106
    [https://support.mozilla.org/en-US/kb/flash-113-doesnt-load-video-firefox
    Flash 11.3 doesn't load video in Firefox]
    thank you

  • Mac Intel and Real Player - some info

    I've been grappling with the problem of getting Real Player to run on an iMac Intel for some weeks. I have now solved my problem so post my experience here in case it is helpful to anyone else.
    Only a few weeks ago Realplayer was not written to run on the Intel iMac. This was not obvious from the Real site (a sign that marketing people are in charge over there, all negative information is banned in case it creates a bad impression, never mind the cusotmers going mad trying to find out some basic and essential information).
    Well Real Player does now run on the iMac Intel. Again the Real website is useless for any serious information about the why's, when's and wherefore's of this, but it can now work, so I'll be happy with that.
    However when you install the Realplayer (I installed the free version, don't have experience with the paid for version, experience so far doesn't incline me to pay for it) it may not work straightaway. One apparent problem is that behind the scenes it seems to set your Audio output to a higher bit rate than is appropriate. This creats the apparent behaviour that Real player runs, and successfully streams, but no sound emanates.
    Here are the things I did at the end of which it worked.
    1. Find the Real Player application under Finder, click on it and select "Get info" (from Finder menu) and tick box to run under Rosetta. I am not sure if this is now necessary but I did it and it works, so I'm not undoing it.
    2. Open, then close GarageBand. This was recommended by other posters.
    3. This is what took me ages to get right.
    Go to Applications/Utilities
    Open Audio MIDI Setup
    It should open in the Audio Devices tab, if not, click on Audio Devices tab (top middle, left tab)
    In selection box marked "Properties For", select "Built In Audio"
    At this point the right hand pane should open with details of the built-in speakers for the iMac Intel. Note that if the right hand pane is empty or has a message about Output not being supported, this is because you need to select "Built In Audio" under the "Properties For" box.
    Makes sure that under the Format selection box you select "44100"
    Close Audio MIDI Setup and then run Real Player.
    Hope it helps someone.
    Or maybe I was the only one left struggling with this!
    Martin
    Singapore
    Mac OS X Intel Mac OS X (10.4)

    Flash Player 10.3.183.90
    Mac OS X 10.5
    •Flash Player 10.3.183.90 (Mac only) (24.4 MB)
    This may be the correct one, since it does not say Mac OS X 10.4+ PPC
    While I have an Intel-Mac running OS X 10.5.8, and last version supported
    Flash from Adobe archive, I don't recollect which one. I did save the .zip.
    Also have three PPC Macs running OS X 10.5.8 with a patched adobe flash
    using the 11.x method of extracting part of a newer Flash (still vintage) to
    trick sites into seeing it as a later than Flash 10.1.
    •Adobe Flash Player - Help:
    http://helpx.adobe.com/flash-player.html
    Hopefully this helps.
    Good luck & happy computing!

  • N73 Real Player very quiet

    Sorry if this has been brought up before.
    I recently bought an N73. One of the reasons I got it was to watch bits of video on my long journey to and from work. When I play a 3gp file via Real Player, the sound is barely audible through the headphones. If there's any kind of outside sound, I can't hear a thing. Oddly, the sound seems OK through the phone's built-in speakers. Also any other sound is OK through the headphones.
    The problem seems to lie either with the firmware (V 2.0628.0.0.1), or with Real Player (V s60.30.19.02 D 18 May 2006). I think I'm up to date.
    Does anyone know of a fix for this, or have I just bought a turkey?
    Thanks for any help.

    You should have a network locked version... Do backup of phone content, and after that, do a phone reset *#7780#, before a phone format, and see it it works better.

Maybe you are looking for

  • User Missing Error while Executing a Bex Query.

    Hi, I created a query using BEx Query Designer, i'am trying to  execute the query. After giving the  Login ID and Password to execute in EP  it shows a exception called 'user' missing.Kindly help out regarding this issue. With Regards, Pradeep.B

  • Fiscal Reporting in AP

    Hello, We need to prepare fiscal reports for suppliers in Belgium (fiscal report 281.50) based on PeopleSoft 9.1 Accounts Payable. As this is not a part of the standard reporting in PeopleSoft we wondering whether you could advise us on which 'custom

  • Value Mapping error

    Hi Experts While testing Value Mapping we are getting following error in trace Trace level="1" type="T">Key mapping from some information----   has not been performed</Trace>   <Trace level="1" type="T">*** END APPLICATION TRACE ***</Trace> Regards A

  • Does Bug Base Work? In regards to AIR

    As the title says, does bug base work? I have been following the Bug Base daily checking constantly for updates from Adobe staff in regards to many currently present bugs that IMO left unfixed make this platform more unreliable as time goes on. It se

  • 10.7.2 finder stops copying

    I have a 3Tb external USB connected Seagate drive  MacFS, Journaled.  When copying across the network to my Lacie NAS, the drive stops copying after an hour or so when connected to my MacBook Pro running 10.7.2.  No issues connecting to my firewire d