Python sunau Module
Example
Display AU file format information:
import sunau
# sunau module reads and writes Sun AU audio files
print('Module for Sun AU audio file format')
print('Use sunau.open() to read/write .au files')
Try it Yourself »
Definition and Usage
The sunau module provides an interface for reading and writing Sun AU audio files.
Use it to process .au audio files, which were commonly used on Unix systems, particularly Sun workstations.
Members
Member | Description |
---|---|
AU_File | Base class for audio file objects. |
Error | Exception raised for sunau-specific errors. |
open() | Open an AU file for reading or writing. |