home *** CD-ROM | disk | FTP | other *** search
/ ftp.microsoft.com / 2002-07-02_ftp.microsoft.com.zip / Products / mediaplayer / UNIX / README.sunos < prev   
Text File  |  1998-09-17  |  17KB  |  394 lines

  1. ----------------------------------------------------
  2. MICROSOFT NETSHOW PLAYER 2.0 BETA 1 FOR UNIX
  3.  
  4. (c) 1998 Microsoft Corporation, all rights reserved
  5. ----------------------------------------------------
  6.  
  7.  
  8. ========
  9. CONTENTS
  10. ========
  11.  
  12. a. Installation
  13. b. Known Bugs
  14. c. License Agreement
  15.  
  16.  
  17.  
  18.  
  19.  
  20. --------------------------------------------
  21.   A )                 --** Installation **--
  22. --------------------------------------------
  23.                  
  24.                  
  25.                  
  26. I)
  27.  
  28.   After downloading the Netshow archive the following steps should be
  29.   taken to install Netshow onto your system.
  30.  
  31.  
  32.   1) Untar the archive. This will create a directory 
  33.      called netshow and with some files inside it.
  34.  
  35.     "tar -xvf NetShow_Sunos_Beta.tar"
  36.  
  37.   2) Go into the newly created netshow directory.
  38.  
  39.     "cd netshow"
  40.  
  41.   3) Add execution priviledges to the netshow binary.
  42.  
  43.     "chmod +x netshow"
  44.  
  45.   4) Move the netshow binary to where ever you keep your executables.
  46.      One common place is "/usr/local/bin". In this case you would type:
  47.  
  48.     "cp netshow /usr/local/bin"
  49.  
  50.   5) Next we'll create a directory to keep the Netshow HTML help page in.
  51.      You may need to be superuser in order to create this directory
  52.      on your system.
  53.  
  54.     "mkdir /usr/local/netshow"
  55.  
  56.     Move the Netshow Help file into the directory
  57.  
  58.     "cp help.html  /usr/local/netshow"
  59.  
  60.     If you wish to place the "help.html" file in a directory 
  61.     other than listed above, then you need to create an env variable
  62.     NETSHOW_HOME_DIR and set it equal to that directory.
  63.  
  64.     For example, if you place "help.html" in the directory
  65.     "/global/netshow"  then you need to:
  66.  
  67.     "setenv NETSHOW_HOME_DIR /global/netshow"
  68.  
  69.     so that netshow knows where to find the help file.
  70.  
  71.  
  72. II)  --** Setting NetShow up as a Helper Application for a WWW Browser **--
  73.  
  74.     
  75.     There are three things you need to do in order to get your
  76.     WWW browser to properly call up NetShow to view ASF files.
  77.  
  78.     1) Setting up your ".mime.types" file.
  79.  
  80.        This file will classify a file name to a particular MIME type 
  81.        and subtype based on the extension of that file name.
  82.  
  83.        Edit the ".mime.types" file in your home directory and add
  84.        the following line at the top:
  85.  
  86.           video/x-ms-asf    asf asx
  87.  
  88.        For example if this is what your ".mime.types" file looks like
  89.        now:
  90.  
  91.           video/mpeg        mpg mpeg
  92.           video/quicktime   qt mov
  93.           video/avi         avi
  94.           video/fli         fli flc
  95.           audio/wav         wav
  96.           audio/au          au
  97.  
  98.        You would change it to be (by adding the top line):
  99.  
  100.           video/x-ms-asf    asf asx
  101.           video/mpeg        mpg mpeg
  102.           video/quicktime   qt mov
  103.           video/avi         avi
  104.           video/fli         fli flc
  105.           audio/wav         wav
  106.           audio/au          au
  107.  
  108.     2) Setting up your ".mailcap" file.
  109.  
  110.        This file maps MIME types/subtypes to applications that can
  111.        display or handle them.  WWW browsers use this file to determine
  112.        what program(also known as an Helper Application) should be 
  113.        called to for a file it has just downloaded.
  114.  
  115.        Edit the ".mailcap" file located in your home directory and
  116.        add the following line at the top of it:
  117.  
  118.          video/x-ms-asf;    netshow %s;
  119.  
  120.        You may want to give the full path name to where you place
  121.        the "netshow" executable.  For example if you placed "netshow" in
  122.        the directory "/usr/local/bin", you would add the following
  123.        line to the ".mailcap" instead of the one above:
  124.  
  125.        video/x-ms-asf;    /usr/local/bin/netshow %s;
  126.  
  127.  
  128.        For example if you put "netshow" in "/usr/local/bin" and this
  129.        is what your ".mailcap" file looks like now:
  130.  
  131.           video/mpeg;           mpeg_play %s ;
  132.           video/*;              xanim %s;
  133.           audio/wav;            xanim %s;
  134.           audio/au;             xanim %s;
  135.           audio/x-mpeg;         maplay %s;
  136.           audio/x-pn-realaudio; raplayer %s;
  137.           image/*;              xv %s;
  138.  
  139.        You would change it to be(by adding the top line):
  140.  
  141.           video/x-ms-asf;       /usr/local/bin/netshow %s;
  142.           video/mpeg;           mpeg_play %s;
  143.           video/*;              xanim %s;
  144.           audio/wav;            xanim %s;
  145.           audio/au;             xanim %s;
  146.           audio/x-mpeg;         maplay %s;
  147.           audio/x-pn-realaudio; raplayer %s;
  148.           image/*;              xv %s;
  149.  
  150.        
  151.    
  152.   B -- USERS OF OTHER BROWSERS
  153.     
  154.        Most WWW Browser's for unix know about the ".mime.types" and ".mailcap"
  155.        files (see section A, "Netscape Users")located in your home directory
  156.        and automatically look for them.
  157.  
  158.        There is also usually an "Options" menu that allows you to specify
  159.        the location of these files.  Consult the instructions, man pages,
  160.        or help features that came with the particular WWW browser that you 
  161.        wish to configure.
  162.  
  163.                        
  164.                           
  165. --------------------------------------------
  166.    B )                  --** Known Bugs **--
  167. --------------------------------------------
  168.  
  169.                           
  170.  
  171. Playback
  172. --------
  173. Playback of live streams is broken in this build.
  174.  
  175. Audio playback for content encoded with the various Voxware codecs is not 
  176. supported in this build..
  177.  
  178. You can not fast forward or rewind if the stream is coming from a NetShow 3.0
  179. Server via HTTP. This is due to version compatibility issues.
  180.  
  181. When streaming via HTTP from a NetShow 3.0 Server, the markers do not respond.
  182. By design, markers do not work when receiving a HTTP stream from a HTTP server.
  183.  
  184. Audio encoded with Voxware AC96 plays back at the incorrect speed.
  185.  
  186. The audio and video lose synchronization. The audio falls behind the video several
  187. seconds.
  188.  
  189. If Microsoft Internet Explorer is running in another session on another screen,
  190. and IE is set as the player's default browser, the URL flips passed from the NetShow
  191. Player will not occur, nor will the help command work.
  192.  
  193. Users streaming via HTTP from a NetShow server (not an IIS server) may
  194. experience their file repeating forever, despite playback being set to
  195. play the file a single time.
  196.  
  197.  
  198. Authentication
  199. --------------
  200. This version of the player does not authenticate a challenge from a NetShow 3.0
  201. server using HTTP basic authentication with membership.
  202.  
  203.  
  204. Settings
  205. --------
  206. Numerical settings made in the advanced tab (such as port number for
  207. UDP and proxy) may not persist if you use the mouse to hit the "Apply"
  208. or "OK" buttons.  If you hit <return> on the keyboard and then "OK," the
  209. settings should persist.
  210.  
  211.  
  212.  
  213.  
  214.  
  215. --------------------------------------------
  216.   C )            --** License Agreement **--
  217. --------------------------------------------
  218.  
  219.  
  220.  
  221.  
  222. Microsoft Media Player for Unix
  223.  
  224. END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE
  225.  
  226. IMPORTANT-READ CAREFULLY:  This Microsoft End-User License Agreement
  227. ("EULA") is a legal agreement between you (either an individual or a 
  228. single entity) and Microsoft Corporation for the Microsoft software 
  229. product(s) identified above which may include associated media, printed 
  230. materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). 
  231. By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree 
  232. to be bound by the terms of this EULA. If you do not agree to the terms 
  233. of this EULA, do not install, copy or otherwise use the SOFTWARE PRODUCT. 
  234.  
  235. The SOFTWARE PRODUCT is protected by copyright laws and international 
  236. copyright treaties, as well as other intellectual property laws and 
  237. treaties. The SOFTWARE PRODUCT is licensed, not sold.
  238.  
  239. 1.    GRANT OF LICENSE.  The SOFTWARE PRODUCT is licensed as follows:
  240.  
  241. *Installation and Use.  You may install and use an unlimited number of 
  242. copies of the SOFTWARE PRODUCT on computers at your premises. Each 
  243. computer may be connected at any point in time to an unlimited number 
  244. of workstations or computers operating on one or more internal and/or
  245. external networks.
  246.  
  247. * Backup Copies.  You may also make copies of the SOFTWARE PRODUCT as may
  248. be necessary for backup and archival purposes.  
  249.  
  250. 2.    DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.
  251. * Prerelease Software.  If any component of the SOFTWARE PRODUCT or any of
  252. its components is marked "Prerelease" or "Beta", the component of the
  253. SOFTWARE PRODUCT constitutes pre-release code and may be changed 
  254. substantially before commercial release.  You may not use such component 
  255. in a live operating environment where it may be relied upon to perform in 
  256. the same manner as a commercially released product or with data that has 
  257. not been sufficiently backed up.
  258.  
  259. * Maintenance of Copyright Notices.  You must not remove or alter any 
  260. copyright notices on all copies of the SOFTWARE PRODUCT.
  261.  
  262. * Distribution.  You may not distribute copies of the SOFTWARE PRODUCT 
  263. to third parties, except as expressly provided in Section 1.
  264.  
  265. * Prohibition on Reverse Engineering, Decompilation, and Disassembly.  
  266. You may not reverse engineer, decompile, or disassemble the SOFTWARE 
  267. PRODUCT, except and only to the extent that such activity is expressly 
  268. permitted by applicable law notwithstanding this limitation.
  269.  
  270. * Rental.  You may not rent, lease, or lend the SOFTWARE PRODUCT.
  271.  
  272. * Transfer.  You may permanently transfer all of your rights under this
  273. EULA, provided the recipient agrees to the terms of this EULA.
  274.  
  275. * Support Services.  Microsoft may, but it not obligated to, provide you
  276. with support services related to the SOFTWARE PRODUCT ("Support Services").
  277. Use of Support Services is governed by the Microsoft polices and programs 
  278. described in the user manual, in "on line" documentation and/or other 
  279. Microsoft-provided materials. Any supplemental software code provided to you 
  280. as part of the Support Services shall be considered part of the SOFTWARE 
  281. PRODUCT and subject to the terms and conditions of this EULA.  With respect 
  282. to technical information you provide to Microsoft as part of the Support 
  283. Services, Microsoft may use such information for its business purposes, 
  284. including for product support and development.  Microsoft will not utilize 
  285. such technical information in a form that personally identifies you.
  286.  
  287. * Compliance with Applicable Laws.  You must comply with all applicable laws
  288. regarding use of the SOFTWARE PRODUCT.
  289.  
  290. 3.    TERMINATION.  Without prejudice to any other rights, Microsoft may
  291. terminate this EULA if you fail to comply with the terms and conditions of this
  292. EULA. In such event, you must destroy all copies of the SOFTWARE PRODUCT.
  293.  
  294. 4.    COPYRIGHT.  All title, including but not limited to copyrights, in and
  295. to the SOFTWARE PRODUCT and any copies thereof are owned by Microsoft or its
  296. suppliers. All title and intellectual property rights in and to the content
  297. which may be accessed through use of the SOFTWARE PRODUCT is the property of
  298. the respective content owner and may be protected by applicable copyright or
  299. other intellectual property laws and treaties.  This EULA grants you no rights
  300. to use such content.  All rights not expressly granted are reserved by Microsoft.
  301.  
  302. 5.    U.S. GOVERNMENT RESTRICTED RIGHTS. All SOFTWARE PRODUCT provided to the
  303. U.S. Government pursuant to solicitations issued on or after December 1, 1995
  304. is provided with the commercial rights and restrictions described elsewhere
  305. herein.  All SOFTWARE PRODUCT provided to the U.S. Government pursuant to
  306. solicitations issued prior to December 1, 1995 is provided with RESTRICTED
  307. RIGHTS as provided for in FAR, 48 CFR 52.227-14 (JUNE 1987) or FAR, 48 CFR
  308. 252.227-7013 (OCT 1988), as applicable. 
  309.  
  310. 6.    EXPORT RESTRICTIONS. You agree that you will not export or re-export
  311. the SOFTWARE PRODUCT to any country, person, entity or end user subject to U.S.
  312. export restrictions.  You specifically agree not to export or re-export the
  313. SOFTWARE PRODUCT (i) to any country to which the U.S. has embargoed or restricted
  314. the export of goods or services, which currently include, but are not necessarily
  315. limited to Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria, or to any
  316. national of any such country, wherever located, who intends to transmit or
  317. transport the products back to such country; (ii) to any end-user who you know
  318. or have reason to know will utilize the SOFTWARE PRODUCT in the design,
  319. development or production of nuclear, chemical or biological weapons; or (iii)
  320. to any end-user who you know or have reason to know has been prohibited from
  321. participating in U.S. export transactions by any federal agency of the U.S.
  322. government.
  323.  
  324. 7.    NO WARRANTIES.  Microsoft expressly disclaims any warranty for the
  325. SOFTWARE PRODUCT and SUPPORT SERVICES (if any).  THE SOFTWARE PRODUCT AND ANY
  326. RELATED DOCUMENTATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
  327. EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OR
  328. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.  THE
  329. ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE PRODUCT REMAINS
  330. WITH YOU.
  331.  
  332. 8.    LIMITATION OF LIABILITY.  To the maximum extent permitted by applicable
  333. law, in no event shall Microsoft or its suppliers be liable for any special,
  334. incidental, indirect, or consequential damages whatsoever (including, without
  335. limitation, damages for loss of business profits, business interruption, loss
  336. of business information, or any other pecuniary loss) arising out of the use
  337. of or inability to use the SOFTWARE PRODUCT or the provision of or failure to
  338. provide Support Services, even if Microsoft has been advised of the possibility
  339. of such damages. In any case, Microsoft's entire liability under any provision
  340. of this EULA shall be limited to the greater of the amount actually paid by you
  341. for the SOFTWARE PRODUCT or US$5.00; provided however, if you have entered into
  342. a Microsoft Support Services Agreement, Microsoft's entire liability regarding
  343. Support Services shall be governed by the terms of that agreement. Because some
  344. states and jurisdictions do not allow the exclusion or limitation of liability,
  345. the above limitation may not apply to you.
  346.  
  347. 9.    MISCELLANEOUS.
  348.  
  349. This EULA is governed by the laws of the State of Washington, U.S.A.
  350.  
  351. Should you have any questions concerning this EULA, or if you desire to contact
  352. Microsoft for any reason, please contact the Microsoft subsidiary serving your
  353. country, or write: Microsoft Sales Information Center/One Microsoft Way/Redmond,
  354. WA 98052-6399.
  355.  
  356. Si vous avez acquis votre produit Microsoft au CANADA, la garantie limitΘe
  357. suivante vous concerne:
  358.  
  359. EXCLUSION DE GARANTIES. Microsoft exclut expressΘment toute garantie relative
  360. au LOGICIEL. Le LOGICIEL et la documentation y affΘrente sont fournis "en l'Θtat",
  361. sans garantie d'aucune sorte, expresse ou implicite, y compris, de maniΦre
  362. limitative, sans aucune garantie de qualitΘ, d'adΘquation α un usage particulier
  363. ou de non-contrefaτon. Vous assumez l'ensemble des risques dΘcoulant de 
  364. l'utilisation ou des performances du LOGICIEL.
  365.  
  366. Pas de ResponsabilitΘ pour les Dommages Indirects - Microsoft ou ses fournisseurs
  367. ne seront pas responsables en aucune circonstance pour tout dommage  spΘcial, 
  368. incident, indirect, ou consΘquent quel qu'il soit (y compris, sans limitation, 
  369. les dommages entrainΘs par la perte de bΘnΘfices, l'interruption des activitΘs,  
  370. la perte d'information ou toute autre perte pΘcuniaire) dΘcoulant de l'utilisation
  371. ou de l'impossibilitΘ d'utilisation de ce  LOGICIEL  ainsi que pour toute 
  372. disposition concernant le Suport Technique ou la faτon dont celui-ci a ΘtΘ 
  373. rendu et ce, mΩme si Microsoft a ΘtΘ avisΘe de la possibilitΘ de tels dommages. 
  374. la responsabilitΘ de  Microsoft en vertu de toute disposition de cette convention
  375. ne pourra en aucun temps excΘder  le plus ΘlevΘ entre i) le montant effectivement
  376. payΘ par vous pour le LOGICIEL ou ii) US$5.00. advenant que vous ayez contractΘ 
  377. par entente distincte avec Microsoft pour un Support Technique Θtendu, vous serez 
  378. liΘ par les termes d' une telle entente.
  379.  
  380. La prΘsente Convention est rΘgie par les lois de la province d'Ontario, Canada.
  381. Chacune des parties α la prΘsente reconnaεt irrΘvocablement la compΘtence des 
  382. tribunaux de la province d'Ontario et consent α instituer tout litige qui pourrait 
  383. dΘcouler de la prΘsente auprΦs des tribunaux situΘs dans le district judiciaire 
  384. de York, province d'Ontario.
  385.  
  386. Au cas o∙ vous auriez des questions concernant cette licence ou que vous dΘsiriez 
  387. vous mettre en rapport avec Microsoft pour quelque raison que ce soit, veuillez 
  388. contacter la succursale Microsoft desservant votre pays, dont l'adresse est 
  389. fournie dans ce produit, ou Θcrivez α : Microsoft Sales Information Center, 
  390. One Microsoft Way, Redmond, Washington 98052-6399.
  391.  
  392.  
  393.  
  394.