• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

mtv/H03-May-2022-882479

COPYRIGHTH A D20-Jan-19951 KiB2120

MakefileH A D01-May-19952.3 KiB7724

READMEH A D16-Aug-19952.1 KiB5740

ansi.hH A D20-Jan-19952 KiB6817

blockrun.cH A D20-Jan-19951.3 KiB6150

eyuvtojpeg.cH A D03-May-20226.2 KiB261172

eyuvtoppm.cH A D03-May-20226.3 KiB265176

jmovie2jpeg.cH A D20-Jan-199513.6 KiB379284

mpeg_demux.cH A D03-May-202227.4 KiB876748

old-jmovie2jpeg.cH A D20-Jan-199512.4 KiB346252

ppmtoeyuv.cH A D20-Jan-19957.4 KiB314192

vidtoeyuv.cH A D20-Jan-19956.1 KiB266191

vidtojpeg.cH A D20-Jan-19955.8 KiB252177

vidtoppm.cH A D20-Jan-19955.8 KiB246177

README

1If your input files are not in the input formats accepted by our
2encoder, fear not!  Here are some ways to get the pictures into our
3encoder...
4
51) Converting files to PPM
6
7To convert JPEG files, check out the files in the jpeg directory of the
8encoder.  Compile djpeg for your machine, and you can use it to convert
9them to PPM.
10
11For other input formats, see Jef Poskanzer's PBMPLUS package, which has
12a tool to convert almost every single format to PPM.  One anonymous ftp
13site which carries it is ee.utah.edu, in the directory /pbmplus.
14
15If, by chance, PBMPLUS does not support your format, please drop us a
16note at mpeg-bugs@plateau.cs.berkeley.edu and we'll try to add it to
17this archive for future releases.
18
19
202) Converting files to Encoder/Berkeley YUV (called YUV in earlier
21releases).
22
23Encoder YUV is merely the concatenation of the Y, U, and V data, in
24order.  It is *not* Abekas YUV, which interlaces the Y, U, and V data.
25
26Since the encoder now supports Abekas YUV and other YUV formats, there
27is not a pressing need to have a special conversion program for our
28format.  However, if you insist, you can convert your video format to
29PPM using PBMPLUS and then run ppmtoeyuv in this directory.
30
31
323) Converting files to Abekas YUV
33
34Get Jef Poskanzer's PBMPLUS package as mentioned in (1) and convert
35your image to PPM.  Then run ppmtoyuv on it.  Obviously, you will only
36want to do this if you want to keep the source images around, since the
37encoder takes the larger PPM format as well.
38
394) Converting system layer streams into video and audio streams:
40
41Use mpeg_demux
42
435) Reading JPEGs:  If you have any problems with our built in JPEG support,
44the new version of the IJPEG Group's efforts is avail from:
45ftp.uu.net:/graphics/jpeg/jpegsrc.v5b.tar.gz
46As well as many other sites.  (Note that the version number may increase
47with time ;-)
48If using BASE_FILE_FORMAT jpeg does not work, try building the djpeg
49utility out of the JPEG distrib and using
50BASE_FILE_FORMAT ppm
51INPUT_CONVERT djpeg *
52
536) VID files
54You can now read vid files directly from the encoder.
55If you wish to compile vidtoeyuv for efficiency, you must have libXvid
56
57