home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 2000 April & May / AMIGA_2000_04.iso / patches / extractjpegs / extractjpegs.lha / ExtractJPEGs.readme < prev   
Text File  |  1999-12-18  |  1KB  |  70 lines

  1. Short:    extracts JPEGs (e.g. from Quicktime movies)
  2. Uploader: alexander.richter@01019freenet.de (Alexander Richter)
  3. Author:   alexander.richter@01019freenet.de (Alexander Richter)
  4. Type:     gfx/conv
  5.  
  6. ExtractJPEGs does exactly what its name says: it extracts JPEG pictures
  7. from a given file. For instance,  some Quicktime movies consist of JPEG
  8. pictures.
  9.  
  10.  
  11. USAGE
  12. -----
  13. ExtractJPEGs must be launched from CLI.
  14. syntax:
  15.  
  16. ExtractJPEGs <file>
  17.  
  18. simple, eh?
  19.  
  20. Example -  You want to get all  frames out  of the  "Starship Troopers"
  21. trailer:
  22.  
  23. ExtractJPEGs strshptroopers.mov
  24.  
  25.  
  26. WHAT IT DOES
  27. ------------
  28. ExtractJPEGs hunts for JPEG pictures in the given file and writes them
  29. into the current directory (0.jpg, 1.jpg, 2.jpg, ...).
  30.  
  31. You might use the programs freplace and fixsuffix to convert the file-
  32. names, e.g.:
  33.  
  34. ----------------------------------------------------------------------
  35. freplace .jpg ""
  36. ; "0.jpg" --> "0", "1.jpg" --> "1" etc.
  37.  
  38. list #? LFORMAT "rename %N frame.%N" >t:script
  39. ; "0" --> "frame.0"
  40.  
  41. sort t:script t:script
  42. ; optional
  43.  
  44. execute t:script
  45.  
  46. list frame.(?|??|???) LFORMAT "fixsuffix %N 4" >t:script
  47. ; "frame.0" --> "frame.0000"
  48.  
  49. sort t:script t:script
  50. ; optional
  51.  
  52. execute t:script
  53. ----------------------------------------------------------------------
  54.  
  55.  
  56. INSTALLATION
  57. ------------
  58. copy ExtractJPEGs c:
  59.  
  60.  
  61. BUGS
  62. ----
  63. -no error handling
  64. -sometimes extracts non-JPEG data
  65.  
  66.  
  67. LIMITATIONS
  68. -----------
  69. -does only work on JPEG-Quicktimes, not on Cinepak-compressed ones.
  70.