home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1994 October / IMM1094.ISO / program / vdopub / demo.bat < prev    next >
DOS Batch File  |  1993-11-29  |  1KB  |  38 lines

  1. @echo off
  2. echo First we compress QT.FLI into a .VDO file
  3. echo by using: VIDCMP QT 36 0 0 159 119
  4. echo which means compress the file QT.FLI with a chroma noise reduction
  5. echo factor of 36, and compress the region from 0,0 to 159,119
  6. echo Press a key to compress the file.
  7. pause
  8. vidcmp qt 36 0 0 159 119
  9. cls
  10. echo Ok, the file is compressed, and look at the difference in size.
  11. dir qt.*
  12. echo QT.FLI is the original .FLI file.
  13. echo QT.VDO is the VIDPAK compressed video file.
  14. echo If you ran VDO2FLI on QT.VDO right now, you would reproduce an
  15. echo original .FLI file that would be less than half the size of the
  16. echo orginal.  But instead, we are now going to add the sound track
  17. echo to the .VDO file.
  18. echo We add a sound track with the trackit program.
  19. echo We are going to use: TRACKIT /n4 /s2 QT QT
  20. echo Which means take the .VDO file QT.VDO and add to it the sound track
  21. echo QT.SND using the ACOMP compression parameters of mean error 4 and
  22. echo silence squelching 2.
  23. echo Press a key to add the sound track
  24. pause
  25. trackit /n4 /s2 qt qt
  26. echo Now the sound track has been added and it took less than half the
  27. echo space of the original.  Next you need to select a DIGPAK sound
  28. echo driver to use to play the sound track.
  29. echo Press a key to select a DIGPAK driver.
  30. pause
  31. SETD
  32. echo Ok, you are now ready to play the video
  33. echo Press a key to play back the video with the selected DIGPAK
  34. echo sound driver
  35. pause
  36. vidtv qt
  37. echo Done with VIDPAK demo.
  38.