home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 9 / CD_ASCQ_09_1193.iso / news / 4441 / mpegcode / misc / readme < prev    next >
Text File  |  1993-01-01  |  2KB  |  50 lines

  1. This directory contains source for various utility programs.
  2. To build everything, first edit the Makefile to include the appropriate
  3. Tcl/Tk libraries, and change anything you need to.  Then type 'make.'
  4.  
  5. None of the programs do very much error checking, so beware.
  6.  
  7. PROGRAM:    encode_sh
  8. USAGE:        encode_sh -f encode.tcl
  9. DESCRIPTION:    a very simple Tcl/Tk interface to the mpeg_encode program.
  10.         For it to work, mpeg_encode must be in your path.
  11. BUGS:  Only allows files from one directory.
  12.  
  13. PROGRAM:    ppmtoyuv
  14. USAGE:        ppmtoyuv < input.ppm > output.yuv
  15. DESCRIPTION:    converts a PPM file to a YUV file (encoder format)
  16.  
  17. PROGRAM:    blockppmtoyuv
  18. USAGE:        blockppmtoyuv base start end skip
  19. DESCRIPTION:    will ppmtoyuv all files baseN where N runs from start to end,
  20.         skipping by skip.  New files will end in .yuv.  Program
  21.         DELETES the original files.
  22.  
  23. All of the following programs require a Parallax XVideo card to run:
  24.  
  25. PROGRAM:    playone
  26. USAGE:        playone filename width height start end outbase [quality]
  27. DESCRIPTION:    converts an Xvideo JPEG movie file (filename) of given
  28.         (width, height) into a bunch of ppm files.  Only does the
  29.         frames numbered start to end (frames begin at 1).  Output
  30.         file names are outbaseN.ppm where N is the frame number.
  31. BUGS: may crash after 200 or 300 frames
  32.  
  33. PROGRAM:    playskip
  34. USAGE:        playskip filename width height start nth outbase [quality]
  35. DESCRIPTION:    same as playone, except does every nth frame beginning with
  36.         start until the end of the movie.
  37. BUGS: may crash after 200 or 300 frames
  38.  
  39. PROGRAM:    xvideotojpeg
  40. USAGE:        xvideotojpeg filename width height start end outbase [quality]
  41. DESCRIPTION:    same as playone, except instead of outputting ppm files,
  42.         outputs JPEG files.
  43. BUGS: may crash after 200 or 300 frames
  44.  
  45. PROGRAM:    xvidtoyuv
  46. USAGE:        xvidtoyuv filename width height start nth outbase [quality]
  47. DESCRIPTION:    same as playskip, except instead of outputting ppm files,
  48.         outputs yuv files.
  49. BUGS: may crash after 200 or 300 frames
  50.