diff options
Diffstat (limited to 'libraries/audioread/README')
-rw-r--r-- | libraries/audioread/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libraries/audioread/README b/libraries/audioread/README new file mode 100644 index 0000000000..2ca9df8bc7 --- /dev/null +++ b/libraries/audioread/README @@ -0,0 +1,13 @@ +Decode audio files using whichever backend is available. +The library currently supports: +- gstreamer via gst-python. +- MAD via the pymad bindings. +- ffmpeg via its command-line interface. +- The standard library wave and aifc modules (for WAV and AIFF files). + +ffmpeg and gst-python are optional dependencies. + +If you want to build this for use with Python 3.x (needs the optional +dependency python3) pass the script PYTHON3=yes, like + + PYTHON3=yes ./audioread.SlackBuild |