home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 August / PCWorld_2000-08_cd.bin / ipb / Config / Player.sca < prev   
Text File  |  1998-07-02  |  2KB  |  67 lines

  1. !ScalaScript
  2. //$Id: player.sca,v 0.2 1997/10/16 14:54:20 marius Exp $
  3. EVENT
  4.     // If you want to force playback to use a single screen resolution,
  5.     // you can set these to the desired dimensions, e.g. 640/480,
  6.     // 800/600, and so on.
  7.     Screen.ViewWidth = 0;
  8.     Screen.ViewHeight = 0;
  9.  
  10.     // If you want to force playback to use a single screen color mode,
  11.     // you can set this to "PaletteMapped" (256 colors), "HiColor" (65K
  12.     // colors), or "TrueColor" (16M colors).
  13.     Screen.ViewColorModel = "Adapt";
  14.  
  15.     // Audio defaults to playback in 22kHz 16bit.  You can reduce
  16.     // this to 22kHz 8bit by setting this to "Low", or increase it to
  17.     // 44kHz 16 bit by setting this to "High".  Note that higher audio
  18.     // quality uses more computing resources to play audio, hence there
  19.     // will be less resources available for graphics performance.
  20.     Sample.Quality = "Medium";
  21.  
  22.     // Hardware MPEG Settings:
  23.     
  24.     //  Forced MPEG PlayBack Mode ("None" / "256 Colors" / "High Color" /
  25.     // "True Color")
  26.     MPEG.ForceMode = "None";
  27.  
  28.     // Forced MPEG PlayBack Width and height.
  29.     MPEG.ForceWidth = 0;
  30.     MPEG.ForceHeight = 0;
  31.  
  32.     // Forced MPEG PlayBack Frequency (0 for current)
  33.     MPEG.ForceFrequency = 0;
  34.  
  35.     // Set to TRUE if we should use 16-bit MCI commands (in case it's a
  36.     // Windows 3.1 driver)
  37.     MPEG.Use16BitMCI = FALSE;
  38.  
  39.     // Set to TRUE if DirectDraw should be disabled during playback
  40.     // (driver may use DirectDraw)
  41.     MPEG.DisableDirectDraw = FALSE;
  42.  
  43.     // Set to TRUE if DirectSound should be disabled during playback
  44.     // (driver may use MCI)
  45.     MPEG.DisableDirectSound = FALSE;
  46.  
  47.     // Set to TRUE if DoubleBuffering should be disabled during playback
  48.     // (if no hardware overlay)
  49.     MPEG.DisableDoubleBuffering = TRUE;
  50.  
  51.     // Set to TRUE if window should be maximized before playback
  52.     // (if fullscreen is not default)
  53.     MPEG.MaximizeOnPlayback = FALSE;
  54.  
  55.     // Set to TRUE if we should close MCI after playback (in case
  56.     // driver is leaking memory++)
  57.     MPEG.CloseMCIAfterPlayback = FALSE;
  58.  
  59.     // Prevents driver from halting us, set to number of minutes
  60.     // (e.g. 15) or 0 for auto-detect
  61.     MPEG.InactivityTimeout = 15;
  62.  
  63.     // Set to MPEG Device Type (mpegvideo/avivideo/activemovie/
  64.     // mciqtz32.dll/MpegVideo,MKEDVD)
  65.     MPEG.DeviceType = "mpegvideo";
  66. END
  67.