Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 1 | \chapter{Multimedia Services} |
Fred Drake | 1f3ab1c | 1998-02-18 15:22:08 +0000 | [diff] [blame^] | 2 | \label{mmedia} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 4 | The modules described in this chapter implement various algorithms or |
| 5 | interfaces that are mainly useful for multimedia applications. They |
| 6 | are available at the discretion of the installation. Here's an overview: |
| 7 | |
| 8 | \begin{description} |
| 9 | |
| 10 | \item[audioop] |
| 11 | --- Manipulate raw audio data. |
| 12 | |
| 13 | \item[imageop] |
| 14 | --- Manipulate raw image data. |
| 15 | |
| 16 | \item[aifc] |
| 17 | --- Read and write audio files in AIFF or AIFC format. |
| 18 | |
| 19 | \item[jpeg] |
| 20 | --- Read and write image files in compressed JPEG format. |
| 21 | |
| 22 | \item[rgbimg] |
| 23 | --- Read and write image files in ``SGI RGB'' format (the module is |
| 24 | \emph{not} SGI specific though)! |
| 25 | |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 26 | \item[imghdr] |
| 27 | --- Determine the type of image contained in a file or byte stream. |
| 28 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 29 | \end{description} |