home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / multimed / 3999 < prev    next >
Encoding:
Text File  |  1993-01-07  |  1.1 KB  |  46 lines

  1. Newsgroups: comp.multimedia
  2. Path: sparky!uunet!pipex!warwick!dcs.warwick.ac.uk!arthur
  3. From: arthur@dcs.warwick.ac.uk (John Vaudin)
  4. Subject: MCI string query
  5. Message-ID: <1993Jan7.123521.21105@dcs.warwick.ac.uk>
  6. Sender: news@dcs.warwick.ac.uk (Network News)
  7. Nntp-Posting-Host: stone
  8. Organization: Department of Computer Science, Warwick University, England
  9. Date: Thu, 7 Jan 1993 12:35:21 GMT
  10. Lines: 34
  11.  
  12. Can anyone help me with a query on programming a DVI card (under OS/2
  13. and MMPM/2) using the MCI string interface?
  14.  
  15. I'm trying to play videos without opening and closing the display context
  16. each time, as this slows things down greatly.
  17.  
  18. The following works but is painfully slow (around 10 seconds to start
  19. playing each video):
  20.  
  21.     open video1.avs
  22.     play digitalvideo
  23.     close digitalvideo
  24.     open video2.avs
  25.     play digitalvideo
  26.     close digitalvideo
  27.     ...
  28.  
  29. I would like to do the following:
  30.  
  31.     open digitalvideo
  32.     load video1.avs
  33.     play digitalvideo
  34.     load video2.avs
  35.     play digitalvideo
  36.     ...
  37.     close digitalvideo
  38.  
  39. But on attempting the 'load' I get an 'instance inactive' error message.
  40. Any suggestions?
  41.  
  42. Thanks,
  43.  
  44. Rolf Howarth
  45. rolf@parallax.demon.co.uk
  46.