home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / ra2.zip / RA2.DOC < prev   
Text File  |  1996-04-13  |  3KB  |  61 lines

  1. Hello Everybody!
  2.  
  3. I have had Real Audio working under WARP CONNECT for about a week now
  4. and I thought I would share my success with everyone.  I previously
  5. tried to make it work with the instructions in the RA_WEBPK.ZIP file (
  6. the one that needs the FEELIX and OBJST programs ), but I thought that
  7. although some got it to work ( I didn't bother ), it was still too
  8. complicated ...  after all this is OS/2!!  So here is my custom
  9. solution:  Please enjoy it as much as I have and let me know how it
  10. works for you.  Also I am just about finished with a REXX program that
  11. will play your favorite Real Audio radio station via a LIST BOX ...  you
  12. point at a predefined station and double click.  The advantage of this
  13. code it that you DO NOT need to have WEBEX running at all, just be
  14. connected!  I'll upload it as soon as it is ready.  Good luck!  Skip
  15.  
  16. 1) Download and install the Real Audio client ( version 1.0 or 2.0 )
  17.  
  18. 2) Find your explore.ini file ( should be in \mptn\etc if WARP CONNECT or
  19.                                              \tcpip\etc if regular WARP )
  20.  
  21.    Edit the explore.ini so that the advanced section looks like this -
  22.  
  23.      [advanced]
  24.      ; advanced user settings - edit with care!
  25.      ;
  26.      ; mailcap= specifies full path to user mailcap file
  27.      ; format is:  mime/type; program_name params %s
  28.      ; example:    image/jpeg; jview -r %s
  29.      ; no wildcards allowed, no piping, no unix commands
  30.      mailcap=c:\tcpip\etc\mailcap.cap
  31.      ; extmap= specifies full path to user extension map file
  32.      ; format is:  mime/type     extension_list
  33.      ; example:    image/jpeg    jpg jpeg jpe
  34.      extmap=c:\tcpip\etc\extmap.ext
  35.  
  36.    The two key lines are the mailcap= and extmap= ones.
  37.  
  38. 3) Create the mailcap.cap and extmap.ext files.  They must be located
  39.    in the directories pointed to by the above advanced settings in the
  40.    explore.ini file.
  41.  
  42.    mailcap.cap should contain the following single line:
  43.  
  44. audio/x-pn-realaudio; c:\raplayer\ra2.cmd %s
  45.  
  46.    extmap.ext should contain the following single line:
  47.  
  48. audio/x-pn-realaudio ram ra
  49.  
  50.    The mailcap.cap file is how to add an external viewer to the WebEx
  51.    and the extmap.ext sets up the extension association.
  52.  
  53. 4) Place the REXX program ( RA2.CMD ) in the c:\raplayer
  54.    directory.  If you boot from other than C: then you will need
  55.    to adjust the hard coded 'C:' references in all of the files above
  56.    and below, otherwise I don't believe you will have to modify any-
  57.    thing to get it working.  The REXX code will put a Real Audio icon
  58.    on your Desktop.  After you have done all this, then just dial in
  59.    to the Internet and go find a Real Audio site like www.audionet.com
  60.    and start listening.
  61.